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

Side by Side Diff: chrome/browser/resources/shared/css/dialogs.css

Issue 11818044: Replace IDR_WEB_UI_CLOSE* with IDR_CLOSE_DIALOG*, cleanup, etc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 .cr-dialog-container { 5 .cr-dialog-container {
6 -webkit-box-align: center; 6 -webkit-box-align: center;
7 -webkit-box-pack: center; 7 -webkit-box-pack: center;
8 -webkit-transition: opacity 250ms linear; 8 -webkit-transition: opacity 250ms linear;
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 display: -webkit-box; 10 display: -webkit-box;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 } 120 }
121 121
122 .cr-dialog-buttons { 122 .cr-dialog-buttons {
123 -webkit-box-orient: horizontal; 123 -webkit-box-orient: horizontal;
124 -webkit-box-pack: end; 124 -webkit-box-pack: end;
125 display: -webkit-box; 125 display: -webkit-box;
126 padding-top: 10px; 126 padding-top: 10px;
127 } 127 }
128 128
129 .cr-dialog-close { 129 .cr-dialog-close {
130 background: url('chrome://theme/IDR_WEB_UI_CLOSE') center no-repeat; 130 background: url('chrome://theme/IDR_CLOSE_DIALOG') center no-repeat;
131 display: inline-block; 131 display: inline-block;
132 height: 44px; 132 height: 44px;
133 opacity: 0.7; 133 opacity: 0.7;
134 position: absolute; 134 position: absolute;
135 right: 0; 135 right: 0;
136 top: 0; 136 top: 0;
137 width: 44px; 137 width: 44px;
138 } 138 }
139 139
140 .cr-dialog-close:hover { 140 .cr-dialog-close:hover {
141 background-image: url('chrome://theme/IDR_WEB_UI_CLOSE_HOVER'); 141 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
142 } 142 }
143 143
144 .cr-dialog-close:active { 144 .cr-dialog-close:active {
145 background-image: url('chrome://theme/IDR_WEB_UI_CLOSE_PRESSED'); 145 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
146 } 146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698