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

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

Issue 8036002: ntp: remove ntp3 resources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 2 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) 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 #recently-closed-menu-button { 6 #recently-closed-menu-button {
7 background: none; 7 background: none;
8 border: 0; 8 border: 0;
9 color: #7F7F7F; 9 color: #7F7F7F;
10 cursor: pointer; 10 cursor: pointer;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 .recent-menu-item:last-of-type { 65 .recent-menu-item:last-of-type {
66 margin-bottom: 4px; 66 margin-bottom: 4px;
67 } 67 }
68 68
69 html[dir='rtl'] .recent-menu-item { 69 html[dir='rtl'] .recent-menu-item {
70 background: no-repeat 100% 50%; 70 background: no-repeat 100% 50%;
71 } 71 }
72 72
73 .recent-window { 73 .recent-window {
74 background-image: url('../ntp/closed_window.png'); 74 background-image: url('./images/closed_window.png');
Rick Byers 2011/09/26 16:05:26 curious: why the "./"? Other WebUI components app
Evan Stade 2011/09/26 22:32:05 I was matching L89. It's probably not necessary in
75 } 75 }
76 76
77 /* TODO(estade): find a better color for active. */ 77 /* TODO(estade): find a better color for active. */
78 .recent-menu-item:active, 78 .recent-menu-item:active,
79 .recent-menu-item:visited, 79 .recent-menu-item:visited,
80 .recent-menu-item:link { 80 .recent-menu-item:link {
81 color: hsl(213, 90%, 24%) !important; 81 color: hsl(213, 90%, 24%) !important;
82 } 82 }
83 83
84 .disclosure-triangle { 84 .disclosure-triangle {
85 background-color: #7F7F7F; 85 background-color: #7F7F7F;
86 display: inline-block; 86 display: inline-block;
87 height: 9px; 87 height: 9px;
88 width: 9px; 88 width: 9px;
89 -webkit-mask-image: url('./ntp4_disclosure_triangle_mask.png'); 89 -webkit-mask-image: url('./images/ntp4_disclosure_triangle_mask.png');
csilv 2011/09/26 22:25:47 Could we consider removing the "ntp4_" prefix to t
Evan Stade 2011/09/26 22:32:05 yes
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698