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 |
11 #ntp5 #card-slider-frame { | 11 #ntp5 #card-slider-frame { |
12 bottom: 0; | 12 bottom: 24px; |
13 position: absolute; | 13 position: absolute; |
14 top: inherit; | 14 top: inherit; |
15 } | 15 } |
16 | 16 |
17 #ntp5 .tile-page-scrollbar, | 17 #ntp5 .tile-page-scrollbar, |
18 #ntp5 .top-margin, | 18 #ntp5 .top-margin, |
19 #ntp5 #footer, | 19 #ntp5 #footer, |
20 #ntp5 #page-switcher-start, | 20 #ntp5 #page-switcher-start, |
21 #ntp5 #page-switcher-end { | 21 #ntp5 #page-switcher-end { |
22 display: none; | 22 display: none; |
23 } | 23 } |
24 | 24 |
25 #ntp5 .tile-page { | 25 #ntp5 .tile-page { |
26 display: block; | 26 display: block; |
27 } | 27 } |
28 | 28 |
29 #ntp5 #page-list { | 29 #ntp5 #page-list { |
30 margin-top: 0; | 30 margin-top: 0; |
31 padding-bottom: 0; | 31 padding-bottom: 0; |
32 } | 32 } |
33 | 33 |
34 #ntp5 .thumbnail-image { | 34 #ntp5 .thumbnail-image { |
35 border-radius: 2px; | 35 border-radius: 2px; |
36 opacity: 1; | 36 opacity: 1; |
37 } | 37 } |
38 | 38 |
39 #ntp5 .tile-page-content { | 39 #ntp5 .tile-page-content { |
40 padding: 0; | 40 padding: 24px 0 0 0; |
41 } | 41 } |
42 | 42 |
43 #ntp5 #notification-container { | 43 #ntp5 #notification-container { |
44 bottom: inherit; | 44 bottom: inherit; |
| 45 position: absolute; |
| 46 top: 4px; |
45 } | 47 } |
46 | 48 |
47 /* ========================================================================= | 49 /* ========================================================================= |
48 End of work around | 50 End of work around |
49 ========================================================================= */ | 51 ========================================================================= */ |
50 | 52 |
51 /* ----------------------------------------------------------------------------- | 53 /* ----------------------------------------------------------------------------- |
52 Debug | 54 Debug |
53 ----------------------------------------------------------------------------- */ | 55 ----------------------------------------------------------------------------- */ |
54 | 56 |
(...skipping 30 matching lines...) Expand all Loading... |
85 .debug .hide-col-2 .tile-col-2, | 87 .debug .hide-col-2 .tile-col-2, |
86 .debug .hide-col-3 .tile-col-3, | 88 .debug .hide-col-3 .tile-col-3, |
87 .debug .hide-col-4 .tile-col-4, | 89 .debug .hide-col-4 .tile-col-4, |
88 .debug .hide-col-5 .tile-col-5, | 90 .debug .hide-col-5 .tile-col-5, |
89 .debug .hide-col-6 .tile-col-6, | 91 .debug .hide-col-6 .tile-col-6, |
90 .debug .hide-col-7 .tile-col-7, | 92 .debug .hide-col-7 .tile-col-7, |
91 .debug .hide-col-8 .tile-col-8, | 93 .debug .hide-col-8 .tile-col-8, |
92 .debug .hide-col-9 .tile-col-9 { | 94 .debug .hide-col-9 .tile-col-9 { |
93 background-color: lightgray; | 95 background-color: lightgray; |
94 } | 96 } |
OLD | NEW |