OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 /* ========================================================================= | 5 /* ========================================================================= |
6 TODO(pedrosimonetti): Work around. The following rules are being used | 6 TODO(pedrosimonetti): Work around. The following rules are being used |
7 to temporarily hide elements we are not using, and reset the styling | 7 to temporarily hide elements we are not using, and reset the styling |
8 according to the new specification. | 8 according to the new specification. |
9 ========================================================================= */ | 9 ========================================================================= */ |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 .debug #dot-list, | 38 .debug #dot-list, |
39 .debug .tile-page-content { | 39 .debug .tile-page-content { |
40 background: rgb(119, 255, 255); | 40 background: rgb(119, 255, 255); |
41 } | 41 } |
42 | 42 |
43 .debug .tile-row { | 43 .debug .tile-row { |
44 background: rgb(255, 255, 119); | 44 background: rgb(255, 255, 119); |
45 } | 45 } |
46 | 46 |
47 .debug .hide-row { | |
48 opacity: 0.35; | |
49 } | |
50 | |
51 .debug .hide-col-0 .tile-col-0, | 47 .debug .hide-col-0 .tile-col-0, |
52 .debug .hide-col-1 .tile-col-1, | 48 .debug .hide-col-1 .tile-col-1, |
53 .debug .hide-col-2 .tile-col-2, | 49 .debug .hide-col-2 .tile-col-2, |
54 .debug .hide-col-3 .tile-col-3, | 50 .debug .hide-col-3 .tile-col-3, |
55 .debug .hide-col-4 .tile-col-4, | 51 .debug .hide-col-4 .tile-col-4, |
56 .debug .hide-col-5 .tile-col-5, | 52 .debug .hide-col-5 .tile-col-5, |
57 .debug .hide-col-6 .tile-col-6, | 53 .debug .hide-col-6 .tile-col-6, |
58 .debug .hide-col-7 .tile-col-7, | 54 .debug .hide-col-7 .tile-col-7, |
59 .debug .hide-col-8 .tile-col-8, | 55 .debug .hide-col-8 .tile-col-8, |
60 .debug .hide-col-9 .tile-col-9 { | 56 .debug .hide-col-9 .tile-col-9 { |
61 background-color: lightgray; | 57 background-color: lightgray; |
62 } | 58 } |
OLD | NEW |