| 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 #most-visited-settings { | |
| 7 background-attachment: fixed; | 6 background-attachment: fixed; |
| 8 background-color: $2; /* COLOR_NTP_BACKGROUND */ | 7 background-color: $2; /* COLOR_NTP_BACKGROUND */ |
| 9 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); | 8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); |
| 10 background-position: $3; | 9 background-position: $3; |
| 11 background-repeat: $5; | 10 background-repeat: $5; |
| 12 } | 11 } |
| 13 | 12 |
| 13 html[bookmarkbarattached='true'] { |
| 14 background-position: $4; |
| 15 } |
| 16 |
| 14 body { | 17 body { |
| 15 color: $8; /* COLOR_NTP_TEXT */ | 18 color: $8; /* COLOR_NTP_TEXT */ |
| 16 height: 100%; | 19 height: 100%; |
| 17 overflow: auto; | 20 overflow: auto; |
| 18 } | 21 } |
| 19 | 22 |
| 20 #attribution, | 23 #attribution, |
| 21 .link-button, | 24 .link-button, |
| 22 .link-span { | 25 .link-span { |
| 23 color: $21; /* COLOR_NTP_TEXT_LIGHT */ | 26 color: $21; /* COLOR_NTP_TEXT_LIGHT */ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 background: -webkit-radial-gradient(rgba($22, 0.3), rgba($22, 0.15)); | 98 background: -webkit-radial-gradient(rgba($22, 0.3), rgba($22, 0.15)); |
| 96 } | 99 } |
| 97 | 100 |
| 98 .app-install-hint-interior > div { | 101 .app-install-hint-interior > div { |
| 99 background-color: $21; /* COLOR_NTP_TEXT_LIGHT */ | 102 background-color: $21; /* COLOR_NTP_TEXT_LIGHT */ |
| 100 } | 103 } |
| 101 | 104 |
| 102 .app-install-hint-interior { | 105 .app-install-hint-interior { |
| 103 border-color: $21; /* COLOR_NTP_TEXT_LIGHT */ | 106 border-color: $21; /* COLOR_NTP_TEXT_LIGHT */ |
| 104 } | 107 } |
| OLD | NEW |