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

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

Issue 9192037: Remove dangling chrome://theme/IDR_CLOSE_BAR* references (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 5
6 html { 6 html {
7 font-family: segoe ui, arial, helvetica, sans-serif; 7 font-family: segoe ui, arial, helvetica, sans-serif;
8 font-size: 14px; 8 font-size: 14px;
9 /* It's necessary to put this here instead of in body in order to get the 9 /* It's necessary to put this here instead of in body in order to get the
10 background-size of 100% to work properly */ 10 background-size of 100% to work properly */
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 #notification .close-button { 60 #notification .close-button {
61 vertical-align: middle; 61 vertical-align: middle;
62 -webkit-margin-start: 0.5em; 62 -webkit-margin-start: 0.5em;
63 } 63 }
64 64
65 .close-button { 65 .close-button {
66 background: no-repeat; 66 background: no-repeat;
67 background-color: transparent; 67 background-color: transparent;
68 /* TODO(estade): this should animate between states. */ 68 /* TODO(estade): this should animate between states. */
69 background-image: url('chrome://theme/IDR_CLOSE_BAR'); 69 background-image: url('../../../../ui/resources/close_bar.png');
70 border: 0; 70 border: 0;
71 cursor: default; 71 cursor: default;
72 display: inline-block; 72 display: inline-block;
73 height: 16px; 73 height: 16px;
74 padding: 0; 74 padding: 0;
75 width: 16px; 75 width: 16px;
76 } 76 }
77 77
78 .close-button:hover, 78 .close-button:hover,
79 .close-button:focus { 79 .close-button:focus {
80 background-image: url('chrome://theme/IDR_CLOSE_BAR_H'); 80 background-image: url('../../../../ui/resources/close_bar_h.png');
81 } 81 }
82 82
83 .close-button:active { 83 .close-button:active {
84 background-image: url('chrome://theme/IDR_CLOSE_BAR_P'); 84 background-image: url('../../../../ui/resources/close_bar_p.png');
85 } 85 }
86 86
87 .linkButton { 87 .linkButton {
88 color: #06C; 88 color: #06C;
89 cursor: pointer; 89 cursor: pointer;
90 display: inline-block; 90 display: inline-block;
91 text-decoration: underline; 91 text-decoration: underline;
92 -webkit-margin-start: 0.5em; 92 -webkit-margin-start: 0.5em;
93 } 93 }
94 94
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 padding: 0; 315 padding: 0;
316 position: absolute; 316 position: absolute;
317 margin: 0; 317 margin: 0;
318 max-width: 150px; 318 max-width: 150px;
319 min-width: 90px; 319 min-width: 90px;
320 outline: none; 320 outline: none;
321 top: 0; 321 top: 0;
322 z-index: 5; 322 z-index: 5;
323 -webkit-transition: width 150ms, right 150ms, background-color 150ms; 323 -webkit-transition: width 150ms, right 150ms, background-color 150ms;
324 } 324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698