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: ${colorBackground}; | 7 background-color: ${colorBackground}; |
8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?${themeId}); | 8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?${themeId}); |
9 background-position: ${backgroundBarDetached}; | 9 background-position: ${backgroundBarDetached}; |
10 background-repeat: ${backgroundTiling}; | 10 background-repeat: ${backgroundTiling}; |
11 } | 11 } |
12 | 12 |
| 13 #attribution { |
| 14 left: ${leftAlignAttribution}; |
| 15 right: ${rightAlignAttribution}; |
| 16 text-align: ${textAlignAttribution}; |
| 17 } |
| 18 |
13 #attribution-img { | 19 #attribution-img { |
14 content: url(chrome://theme/IDR_THEME_NTP_ATTRIBUTION?${themeId}); | 20 content: url(chrome://theme/IDR_THEME_NTP_ATTRIBUTION?${themeId}); |
15 } | 21 } |
16 | 22 |
17 html[bookmarkbarattached='true'] { | 23 html[bookmarkbarattached='true'] { |
18 background-position: ${backgroundBarAttached}; | 24 background-position: ${backgroundBarAttached}; |
19 } | 25 } |
20 | 26 |
21 body { | 27 body { |
22 color: ${colorTextRgba}; | 28 color: ${colorTextRgba}; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 } | 78 } |
73 | 79 |
74 .thumbnail-wrapper { | 80 .thumbnail-wrapper { |
75 /* This shows through at the (rounded) thumbnail's corners. */ | 81 /* This shows through at the (rounded) thumbnail's corners. */ |
76 background-color: ${colorSectionBorder}; | 82 background-color: ${colorSectionBorder}; |
77 } | 83 } |
78 | 84 |
79 .filler .thumbnail { | 85 .filler .thumbnail { |
80 border-color: ${colorBackground}; | 86 border-color: ${colorBackground}; |
81 } | 87 } |
OLD | NEW |