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 html { | 5 html { |
6 background-attachment: fixed; | 6 background-attachment: fixed; |
7 background-color: $2; /* COLOR_NTP_BACKGROUND */ | 7 background-color: $2; /* COLOR_NTP_BACKGROUND */ |
8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); | 8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); |
9 background-position: $3; | 9 background-position: $3; |
10 background-repeat: $5; | 10 background-repeat: $5; |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 100 } |
101 | 101 |
102 .thumbnail-wrapper { | 102 .thumbnail-wrapper { |
103 /* This shows through at the (rounded) thumbnail's corners. */ | 103 /* This shows through at the (rounded) thumbnail's corners. */ |
104 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ | 104 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ |
105 } | 105 } |
106 | 106 |
107 .filler .thumbnail { | 107 .filler .thumbnail { |
108 border-color: $2; /* COLOR_NTP_BACKGROUND */ | 108 border-color: $2; /* COLOR_NTP_BACKGROUND */ |
109 } | 109 } |
110 | |
111 /* App install hint ***********************************************************/ | |
112 | |
113 .app-install-hint:hover .app-install-hint-interior > .interior-background, | |
114 .app-install-hint:active .app-install-hint-interior > .interior-background { | |
115 background-color: rgba($23, 0.2); /* COLOR_NTP_SECTION_BORDER */ | |
116 } | |
117 | |
118 .app-install-hint-interior > .vertical-bar, | |
119 .app-install-hint-interior > .horizontal-bar { | |
120 background-color: $21; /* COLOR_NTP_TEXT_LIGHT */ | |
121 } | |
122 | |
123 .app-install-hint-interior { | |
124 border-color: $21; /* COLOR_NTP_TEXT_LIGHT */ | |
125 } | |
OLD | NEW |