Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Side by Side Diff: chrome/browser/resources/ntp_search/mock/debug.css

Issue 12207138: Remove unused ntp_search. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 /* =========================================================================
6 TODO(pedrosimonetti): Work around. The following rules are being used
7 to temporarily hide elements we are not using, and reset the styling
8 according to the new specification.
9 ========================================================================= */
10
11 #ntp5 .tile-page-scrollbar,
12 #ntp5 .top-margin {
13 display: none;
14 }
15
16 /* =========================================================================
17 End of work around
18 ========================================================================= */
19
20 /* -----------------------------------------------------------------------------
21 Debug
22 ----------------------------------------------------------------------------- */
23
24 .debug #bottom-panel {
25 background: rgb(250, 255, 255);
26 outline: 1px solid rgb(111, 255, 255);
27 }
28
29 .debug #card-slider-frame {
30 background: rgb(227, 255, 255);
31 outline: 1px solid rgb(171, 255, 255);
32 }
33
34 .debug #bottom-panel-toolbar {
35 background: rgb(255, 170, 255);
36 }
37
38 .debug #dot-list,
39 .debug .tile-page-content {
40 background: rgb(119, 255, 255);
41 }
42
43 .debug .tile-row {
44 background: rgb(255, 255, 119);
45 }
46
47 .debug #bookmark-bar-spacer {
48 background: rgb(255, 255, 119);
49 }
50
51 .debug .hide-col-0 .tile-col-0,
52 .debug .hide-col-1 .tile-col-1,
53 .debug .hide-col-2 .tile-col-2,
54 .debug .hide-col-3 .tile-col-3,
55 .debug .hide-col-4 .tile-col-4,
56 .debug .hide-col-5 .tile-col-5,
57 .debug .hide-col-6 .tile-col-6,
58 .debug .hide-col-7 .tile-col-7,
59 .debug .hide-col-8 .tile-col-8,
60 .debug .hide-col-9 .tile-col-9 {
61 background-color: lightgray;
62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698