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

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: sync it 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
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.js ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 .bare-minimum #footer { 71 .bare-minimum #footer {
72 color: $8; /* COLOR_NTP_TEXT */ 72 color: $8; /* COLOR_NTP_TEXT */
73 } 73 }
74 74
75 .bare-minimum .disclosure-triangle { 75 .bare-minimum .disclosure-triangle {
76 background-color: $8; /* COLOR_NTP_TEXT */ 76 background-color: $8; /* COLOR_NTP_TEXT */
77 } 77 }
78 78
79 .bare-minimum .footer-menu-button:hover, 79 .bare-minimum .footer-menu-button:hover,
80 .bare-minimum .footer-menu-button[menu-shown], 80 .bare-minimum .footer-menu-button[menu-shown],
81 .bare-minimum #chrome-web-store-href:hover { 81 .bare-minimum #chrome-web-store-link:hover {
82 color: rgba($23, 0.85); /* COLOR_NTP_TEXT */ 82 color: rgba($23, 0.85); /* COLOR_NTP_TEXT */
83 } 83 }
84 84
85 .bare-minimum .footer-menu-button:hover .disclosure-triangle, 85 .bare-minimum .footer-menu-button:hover .disclosure-triangle,
86 .bare-minimum .footer-menu-button[menu-shown] .disclosure-triangle { 86 .bare-minimum .footer-menu-button[menu-shown] .disclosure-triangle {
87 background-color: rgba($23, 0.85); /* COLOR_NTP_TEXT */ 87 background-color: rgba($23, 0.85); /* COLOR_NTP_TEXT */
88 } 88 }
89 89
90 /* Most Visited ***************************************************************/ 90 /* Most Visited ***************************************************************/
91 91
92 .most-visited, 92 .most-visited,
93 .most-visited > .title { 93 .most-visited > .title {
94 color: $8; /* COLOR_NTP_TEXT */ 94 color: $8; /* COLOR_NTP_TEXT */
95 } 95 }
96 96
97 .most-visited:focus:not(.filler) .thumbnail-wrapper, 97 .most-visited:focus:not(.filler) .thumbnail-wrapper,
98 .most-visited:hover:not(.filler) .thumbnail-wrapper { 98 .most-visited:hover:not(.filler) .thumbnail-wrapper {
99 background-color: $6; /* COLOR_NTP_HEADER */ 99 background-color: $6; /* COLOR_NTP_HEADER */
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
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.js ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698