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

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

Issue 10836139: Pixel double the NTP background (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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: -webkit-image-set(
9 url(chrome://theme/IDR_THEME_NTP_BACKGROUND?$1) 1x);
9 background-position: $3; 10 background-position: $3;
10 background-repeat: $5; 11 background-repeat: $5;
11 } 12 }
12 13
13 html[bookmarkbarattached='true'] { 14 html[bookmarkbarattached='true'] {
14 background-position: $4; 15 background-position: $4;
15 } 16 }
16 17
17 body { 18 body {
18 color: $8; /* COLOR_NTP_TEXT */ 19 color: $8; /* COLOR_NTP_TEXT */
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 } 101 }
101 102
102 .thumbnail-wrapper { 103 .thumbnail-wrapper {
103 /* This shows through at the (rounded) thumbnail's corners. */ 104 /* This shows through at the (rounded) thumbnail's corners. */
104 background-color: $11; /* COLOR_NTP_SECTION_BORDER */ 105 background-color: $11; /* COLOR_NTP_SECTION_BORDER */
105 } 106 }
106 107
107 .filler .thumbnail { 108 .filler .thumbnail {
108 border-color: $2; /* COLOR_NTP_BACKGROUND */ 109 border-color: $2; /* COLOR_NTP_BACKGROUND */
109 } 110 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/new_incognito_tab_theme.css ('k') | chrome/browser/resources/ntp_search/new_tab_theme.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698