OLD | NEW |
1 html, | 1 html, |
2 #most-visited-settings { | 2 #most-visited-settings { |
3 background-attachment: fixed; | 3 background-attachment: fixed; |
4 background-color: $2; /* COLOR_NTP_BACKGROUND */ | 4 background-color: $2; /* COLOR_NTP_BACKGROUND */ |
5 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); | 5 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); |
6 background-position: $3; | 6 background-position: $3; |
7 background-repeat: $5; | 7 background-repeat: $5; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 } | 70 } |
71 | 71 |
72 /* Most Visited ***************************************************************/ | 72 /* Most Visited ***************************************************************/ |
73 | 73 |
74 .most-visited, | 74 .most-visited, |
75 .most-visited > .title { | 75 .most-visited > .title { |
76 color: $8; /* COLOR_NTP_TEXT */ | 76 color: $8; /* COLOR_NTP_TEXT */ |
77 } | 77 } |
78 | 78 |
79 .most-visited:focus:not(.filler) .thumbnail-wrapper, | 79 .most-visited:focus:not(.filler) .thumbnail-wrapper, |
80 .most-visited:hover .thumbnail-wrapper { | 80 .most-visited:hover:not(.filler) .thumbnail-wrapper { |
81 background-color: $6; /* COLOR_NTP_HEADER */ | 81 background-color: $6; /* COLOR_NTP_HEADER */ |
82 } | 82 } |
83 | 83 |
84 .edit-bar { | 84 .edit-bar { |
85 background-image: -webkit-linear-gradient( | 85 background-image: -webkit-linear-gradient( |
86 $7, /* COLOR_HEADER_GRADIENT_LIGHT */ | 86 $7, /* COLOR_HEADER_GRADIENT_LIGHT */ |
87 $6); /* COLOR_NTP_HEADER */ | 87 $6); /* COLOR_NTP_HEADER */ |
88 } | 88 } |
89 | 89 |
90 .thumbnail-wrapper { | 90 .thumbnail-wrapper { |
91 /* This shows through at the (rounded) thumbnail's corners. */ | 91 /* This shows through at the (rounded) thumbnail's corners. */ |
92 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ | 92 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ |
93 } | 93 } |
94 | 94 |
95 .filler .thumbnail { | 95 .filler .thumbnail { |
96 border-color: $2; /* COLOR_NTP_BACKGROUND */ | 96 border-color: $2; /* COLOR_NTP_BACKGROUND */ |
97 } | 97 } |
98 | |
99 .thumbnail-shield { | |
100 background-color: $2; /* COLOR_NTP_BACKGROUND */ | |
101 } | |
OLD | NEW |