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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 7584029: Fixed TPM dialog shield style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed comments Created 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * 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 */ 6 */
7 7
8 body { 8 body {
9 background: -webkit-gradient(radial, center center, 0, center center, 400, 9 background: -webkit-gradient(radial, center center, 0, center center, 400,
10 from(#fefefe), to(#efefef)); 10 from(#fefefe), to(#efefef));
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 } 98 }
99 99
100 .header-section.right { 100 .header-section.right {
101 left: 50px; 101 left: 50px;
102 } 102 }
103 103
104 .header-section.left { 104 .header-section.left {
105 left: -20px; 105 left: -20px;
106 } 106 }
107 107
108
109 .step { 108 .step {
110 -webkit-transition: left .2s, opacity .2s, visibility .2s ease-in-out; 109 -webkit-transition: left .2s, opacity .2s, visibility .2s ease-in-out;
111 left: 0; 110 left: 0;
112 min-height: 294px; 111 min-height: 294px;
113 opacity: 1; 112 opacity: 1;
114 position: absolute; 113 position: absolute;
115 width: 640px; 114 width: 640px;
116 } 115 }
117 116
118 .step.right { 117 .step.right {
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 } 345 }
347 346
348 [hidden] { 347 [hidden] {
349 display: none !important; 348 display: none !important;
350 } 349 }
351 350
352 #popup-overlay { 351 #popup-overlay {
353 -webkit-box-align: center; 352 -webkit-box-align: center;
354 -webkit-box-pack: center; 353 -webkit-box-pack: center;
355 -webkit-transition: 0.25s opacity; 354 -webkit-transition: 0.25s opacity;
356 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5), 355 background: #fff;
357 rgba(127, 127, 127, 0.5) 35%,
358 rgba(0, 0, 0, 0.7));
359 bottom: 0; 356 bottom: 0;
360 display: -webkit-box; 357 display: -webkit-box;
361 left: 0; 358 left: 0;
359 opacity: 0.75;
362 padding-bottom: 130px; 360 padding-bottom: 130px;
363 padding: 20px; 361 padding: 20px;
364 position: fixed; 362 position: fixed;
365 right: 0; 363 right: 0;
366 top: 0; 364 top: 0;
367 z-index: 5; 365 z-index: 5;
368 } 366 }
369 367
370 #enroll-login-screen { 368 #enroll-login-screen {
371 display: -webkit-box; 369 display: -webkit-box;
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 #version-labels { 642 #version-labels {
645 -webkit-transition: all .5s linear; 643 -webkit-transition: all .5s linear;
646 bottom: 10px; 644 bottom: 10px;
647 color: #999; 645 color: #999;
648 font-size: 11px; 646 font-size: 11px;
649 left: 10px; 647 left: 10px;
650 opacity: 1.0; 648 opacity: 1.0;
651 position: absolute; 649 position: absolute;
652 text-shadow: 0 1px 1px #fff; 650 text-shadow: 0 1px 1px #fff;
653 } 651 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698