| OLD | NEW |
| 1 /* Copyright 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright 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: $i18n{colorBackground}; | 7 background-color: $i18n{colorBackground}; |
| 8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$i18n{themeId}); | 8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$i18n{themeId}); |
| 9 background-position: $i18n{backgroundBarDetached}; | 9 background-position: $i18n{backgroundBarDetached}; |
| 10 background-repeat: $i18n{backgroundTiling}; | 10 background-repeat: $i18n{backgroundTiling}; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 rgba($i18n{colorSectionBorder}, 0.2), | 71 rgba($i18n{colorSectionBorder}, 0.2), |
| 72 rgba($i18n{colorSectionBorder}, 0.3) 20%, | 72 rgba($i18n{colorSectionBorder}, 0.3) 20%, |
| 73 rgba($i18n{colorSectionBorder}, 0.3) 80%, | 73 rgba($i18n{colorSectionBorder}, 0.3) 80%, |
| 74 rgba($i18n{colorSectionBorder}, 0.2)); | 74 rgba($i18n{colorSectionBorder}, 0.2)); |
| 75 } | 75 } |
| 76 | 76 |
| 77 .dot input:focus { | 77 .dot input:focus { |
| 78 background-color: $i18n{colorBackground}; | 78 background-color: $i18n{colorBackground}; |
| 79 } | 79 } |
| 80 | 80 |
| 81 .thumbnail-wrapper { | |
| 82 /* This shows through at the (rounded) thumbnail's corners. */ | |
| 83 background-color: $i18n{colorSectionBorder}; | |
| 84 } | |
| 85 | |
| 86 .filler .thumbnail { | 81 .filler .thumbnail { |
| 87 border-color: $i18n{colorBackground}; | 82 border-color: $i18n{colorBackground}; |
| 88 } | 83 } |
| OLD | NEW |