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

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

Issue 7867045: [ntp4] Improve styling for bookmarks header bar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: code review update Created 9 years, 3 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.html ('k') | no next file » | 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) 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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698