OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 html, | 6 html, |
7 #most-visited-settings { | 7 #most-visited-settings { |
8 background-attachment: fixed; | 8 background-attachment: fixed; |
9 background-color: $2; /* COLOR_NTP_BACKGROUND */ | 9 background-color: $2; /* COLOR_NTP_BACKGROUND */ |
10 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); | 10 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 background-color: $2; /* COLOR_NTP_BACKGROUND */ | 53 background-color: $2; /* COLOR_NTP_BACKGROUND */ |
54 } | 54 } |
55 | 55 |
56 /* Bookmarks ******************************************************************/ | 56 /* Bookmarks ******************************************************************/ |
57 | 57 |
58 .bookmark, | 58 .bookmark, |
59 .bookmark > .title { | 59 .bookmark > .title { |
60 color: $8; /* COLOR_NTP_TEXT */ | 60 color: $8; /* COLOR_NTP_TEXT */ |
61 } | 61 } |
62 | 62 |
| 63 #bookmarks-title-wrapper { |
| 64 border-bottom-color: rgba($22, 0.3); /* COLOR_NTP_SECTION_BORDER */ |
| 65 } |
| 66 |
63 /* Most Visited ***************************************************************/ | 67 /* Most Visited ***************************************************************/ |
64 | 68 |
65 .most-visited, | 69 .most-visited, |
66 .most-visited > .title { | 70 .most-visited > .title { |
67 color: $8; /* COLOR_NTP_TEXT */ | 71 color: $8; /* COLOR_NTP_TEXT */ |
68 } | 72 } |
69 | 73 |
70 .most-visited:focus:not(.filler) .thumbnail-wrapper, | 74 .most-visited:focus:not(.filler) .thumbnail-wrapper, |
71 .most-visited:hover:not(.filler) .thumbnail-wrapper { | 75 .most-visited:hover:not(.filler) .thumbnail-wrapper { |
72 background-color: $6; /* COLOR_NTP_HEADER */ | 76 background-color: $6; /* COLOR_NTP_HEADER */ |
73 } | 77 } |
74 | 78 |
75 .edit-bar { | 79 .edit-bar { |
76 background-image: -webkit-linear-gradient( | 80 background-image: -webkit-linear-gradient( |
77 $7, /* COLOR_HEADER_GRADIENT_LIGHT */ | 81 $7, /* COLOR_HEADER_GRADIENT_LIGHT */ |
78 $6); /* COLOR_NTP_HEADER */ | 82 $6); /* COLOR_NTP_HEADER */ |
79 } | 83 } |
80 | 84 |
81 .thumbnail-wrapper { | 85 .thumbnail-wrapper { |
82 /* This shows through at the (rounded) thumbnail's corners. */ | 86 /* This shows through at the (rounded) thumbnail's corners. */ |
83 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ | 87 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ |
84 } | 88 } |
85 | 89 |
86 .filler .thumbnail { | 90 .filler .thumbnail { |
87 border-color: $2; /* COLOR_NTP_BACKGROUND */ | 91 border-color: $2; /* COLOR_NTP_BACKGROUND */ |
88 } | 92 } |
OLD | NEW |