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: -webkit-image-set( |
| 9 url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1) 1x); |
9 background-position: $3; | 10 background-position: $3; |
10 background-repeat: $5; | 11 background-repeat: $5; |
11 } | 12 } |
12 | 13 |
13 html[bookmarkbarattached='true'] { | 14 html[bookmarkbarattached='true'] { |
14 background-position: $4; | 15 background-position: $4; |
15 } | 16 } |
16 | 17 |
17 body { | 18 body { |
18 color: $8; /* COLOR_NTP_TEXT */ | 19 color: $8; /* COLOR_NTP_TEXT */ |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 101 } |
101 | 102 |
102 .thumbnail-wrapper { | 103 .thumbnail-wrapper { |
103 /* This shows through at the (rounded) thumbnail's corners. */ | 104 /* This shows through at the (rounded) thumbnail's corners. */ |
104 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ | 105 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ |
105 } | 106 } |
106 | 107 |
107 .filler .thumbnail { | 108 .filler .thumbnail { |
108 border-color: $2; /* COLOR_NTP_BACKGROUND */ | 109 border-color: $2; /* COLOR_NTP_BACKGROUND */ |
109 } | 110 } |
OLD | NEW |