| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 */ | |
| 5 | 4 |
| 6 html { | 5 html { |
| 7 background-attachment: fixed; | 6 background-attachment: fixed; |
| 8 background-color: $i18n{colorBackground}; | 7 background-color: $i18n{colorBackground}; |
| 9 background-position: $i18n{backgroundBarDetached}; | 8 background-position: $i18n{backgroundBarDetached}; |
| 10 background-repeat: $i18n{backgroundTiling}; | 9 background-repeat: $i18n{backgroundTiling}; |
| 11 height: 100%; | 10 height: 100%; |
| 12 overflow: auto; | 11 overflow: auto; |
| 13 } | 12 } |
| 14 | 13 |
| 15 html[hascustombackground='true'] { | 14 html[hascustombackground='true'] { |
| 16 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$i18n{themeId}); | 15 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$i18n{themeId}); |
| 17 } | 16 } |
| 18 | 17 |
| 19 html[bookmarkbarattached='true'] { | 18 html[bookmarkbarattached='true'] { |
| 20 background-position: $i18n{backgroundBarAttached}; | 19 background-position: $i18n{backgroundBarAttached}; |
| 21 } | 20 } |
| 22 | 21 |
| 23 #attribution-img { | 22 #attribution-img { |
| 24 content: url(chrome://theme/IDR_THEME_NTP_ATTRIBUTION?$i18n{themeId}); | 23 content: url(chrome://theme/IDR_THEME_NTP_ATTRIBUTION?$i18n{themeId}); |
| 25 } | 24 } |
| OLD | NEW |