OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 html, | 6 html, |
7 #most-visited-settings { | 7 #most-visited-settings { |
8 background-attachment: fixed; | 8 background-attachment: fixed; |
9 background-color: $2; /* COLOR_NTP_BACKGROUND */ | 9 background-color: $2; /* COLOR_NTP_BACKGROUND */ |
10 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); | 10 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 .most-visited, | 83 .most-visited, |
84 .most-visited > .title { | 84 .most-visited > .title { |
85 color: $8; /* COLOR_NTP_TEXT */ | 85 color: $8; /* COLOR_NTP_TEXT */ |
86 } | 86 } |
87 | 87 |
88 .most-visited:focus:not(.filler) .thumbnail-wrapper, | 88 .most-visited:focus:not(.filler) .thumbnail-wrapper, |
89 .most-visited:hover:not(.filler) .thumbnail-wrapper { | 89 .most-visited:hover:not(.filler) .thumbnail-wrapper { |
90 background-color: $6; /* COLOR_NTP_HEADER */ | 90 background-color: $6; /* COLOR_NTP_HEADER */ |
91 } | 91 } |
92 | 92 |
| 93 .edit-bar { |
| 94 background-image: -webkit-linear-gradient( |
| 95 $7, /* COLOR_HEADER_GRADIENT_LIGHT */ |
| 96 $6); /* COLOR_NTP_HEADER */ |
| 97 } |
| 98 |
93 .thumbnail-wrapper { | 99 .thumbnail-wrapper { |
94 /* This shows through at the (rounded) thumbnail's corners. */ | 100 /* This shows through at the (rounded) thumbnail's corners. */ |
95 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ | 101 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ |
96 } | 102 } |
97 | 103 |
98 .filler .thumbnail { | 104 .filler .thumbnail { |
99 border-color: $2; /* COLOR_NTP_BACKGROUND */ | 105 border-color: $2; /* COLOR_NTP_BACKGROUND */ |
100 } | 106 } |
OLD | NEW |