Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: chrome/browser/resources/ntp4/new_tab_theme.css

Issue 10332049: remove ntp app install hint (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 background-attachment: fixed; 6 background-attachment: fixed;
7 background-color: $2; /* COLOR_NTP_BACKGROUND */ 7 background-color: $2; /* COLOR_NTP_BACKGROUND */
8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1); 8 background-image: url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1);
9 background-position: $3; 9 background-position: $3;
10 background-repeat: $5; 10 background-repeat: $5;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 } 100 }
101 101
102 .thumbnail-wrapper { 102 .thumbnail-wrapper {
103 /* This shows through at the (rounded) thumbnail's corners. */ 103 /* This shows through at the (rounded) thumbnail's corners. */
104 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ 104 background-color: $11; /* COLOR_NTP_SECTION_BORDER */
105 } 105 }
106 106
107 .filler .thumbnail { 107 .filler .thumbnail {
108 border-color: $2; /* COLOR_NTP_BACKGROUND */ 108 border-color: $2; /* COLOR_NTP_BACKGROUND */
109 } 109 }
110
111 /* App install hint ***********************************************************/
112
113 .app-install-hint:hover .app-install-hint-interior > .interior-background,
114 .app-install-hint:active .app-install-hint-interior > .interior-background {
115 background-color: rgba($23, 0.2); /* COLOR_NTP_SECTION_BORDER */
116 }
117
118 .app-install-hint-interior > .vertical-bar,
119 .app-install-hint-interior > .horizontal-bar {
120 background-color: $21; /* COLOR_NTP_TEXT_LIGHT */
121 }
122
123 .app-install-hint-interior {
124 border-color: $21; /* COLOR_NTP_TEXT_LIGHT */
125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698