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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.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: Address comments. 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 * This is the stylesheet used by the Out of the box experience (OOBE) flow, 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow,
6 * sign in and lock screens. 6 * sign in and lock screens.
7 */ 7 */
8 8
9 html, 9 html,
10 body { 10 body {
(...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 white-space: pre-line; 1315 white-space: pre-line;
1316 } 1316 }
1317 1317
1318 .oauth-enroll-link { 1318 .oauth-enroll-link {
1319 color: -webkit-link; 1319 color: -webkit-link;
1320 cursor: pointer; 1320 cursor: pointer;
1321 text-decoration: underline; 1321 text-decoration: underline;
1322 } 1322 }
1323 1323
1324 .close-button { 1324 .close-button {
1325 background: url('chrome://theme/IDR_WEB_UI_CLOSE') center no-repeat; 1325 background: url('chrome://theme/IDR_CLOSE_DIALOG') center no-repeat;
1326 height: 14px; 1326 height: 14px;
1327 position: absolute; 1327 position: absolute;
1328 right: 7px; 1328 right: 7px;
1329 top: 7px; 1329 top: 7px;
1330 width: 14px; 1330 width: 14px;
1331 } 1331 }
1332 1332
1333 .close-button:hover { 1333 .close-button:hover {
1334 background-image: url('chrome://theme/IDR_WEB_UI_CLOSE_HOVER'); 1334 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
1335 } 1335 }
1336 1336
1337 .close-button:active { 1337 .close-button:active {
1338 background-image: url('chrome://theme/IDR_WEB_UI_CLOSE_PRESSED'); 1338 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
1339 } 1339 }
1340 1340
1341 html[dir=rtl] .close-button { 1341 html[dir=rtl] .close-button {
1342 left: 10px; 1342 left: 10px;
1343 right: auto; 1343 right: auto;
1344 } 1344 }
1345 1345
1346 #bubble { 1346 #bubble {
1347 -webkit-transition: 250ms opacity; 1347 -webkit-transition: 250ms opacity;
1348 } 1348 }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1454 width: 100%; 1454 width: 100%;
1455 } 1455 }
1456 1456
1457 .background-initial { 1457 .background-initial {
1458 opacity: 0; 1458 opacity: 0;
1459 } 1459 }
1460 1460
1461 .background-final { 1461 .background-final {
1462 opacity: 1; 1462 opacity: 1;
1463 } 1463 }
OLDNEW
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/print_preview/no_destinations_promo.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698