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

Side by Side Diff: ui/login/screen_container.css

Issue 2635493004: ChromeOS OOBE: update MD-OOBE after UI review. (Closed)
Patch Set: Added oobe-shield. Created 3 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 #outer-container { 6 #outer-container {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-pack: center; 8 -webkit-box-pack: center;
9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */ 9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */
10 bottom: 57px; /* Leave space for the header bar */ 10 bottom: 57px; /* Leave space for the header bar */
11 display: -webkit-box; 11 display: -webkit-box;
12 left: 0; 12 left: 0;
13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */ 13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */
14 position: absolute; 14 position: absolute;
15 right: 0; 15 right: 0;
16 top: 0; 16 top: 0;
17 z-index: 1; 17 z-index: 1;
18 } 18 }
19 19
20 .oobe-display #outer-container { 20 .oobe-display #outer-container {
21 -webkit-perspective: 600px; 21 -webkit-perspective: 600px;
22 bottom: 47px; /* header-bar is 47 pixels high during OOBE */
22 } 23 }
23 24
24 .pin-container.pin-enabled { 25 .pin-container.pin-enabled {
25 opacity: 1; 26 opacity: 1;
26 transition: opacity 200ms ease-in-out 180ms; 27 transition: opacity 200ms ease-in-out 180ms;
27 visibility: visible; 28 visibility: visible;
28 } 29 }
29 30
30 .pin-container.pin-disabled { 31 .pin-container.pin-disabled {
31 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ 32 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */
(...skipping 27 matching lines...) Expand all
59 60
60 #inner-container.animation { 61 #inner-container.animation {
61 overflow: hidden; 62 overflow: hidden;
62 } 63 }
63 64
64 #inner-container.disabled { 65 #inner-container.disabled {
65 opacity: 0.4; 66 opacity: 0.4;
66 pointer-events: none; 67 pointer-events: none;
67 } 68 }
68 69
70 #oobe-shield {
71 display: none;
72 }
73
74 #oobe-shield[md-mode] {
75 background-color: rgba(20, 29, 40, .8); /* #141D28 80% */
michaelpg 2017/01/16 17:57:47 same
76 display: block;
77 height: 100%;
78 left: 0;
79 position: absolute;
80 top: 0;
81 width: 100%;
82 }
69 83
70 #oobe[md-mode] #progress-dots { 84 #oobe[md-mode] #progress-dots {
71 display: none; 85 display: none;
72 } 86 }
73 87
74 /* Screens that have a border and background. */ 88 /* Screens that have a border and background. */
75 #oobe.auto-enrollment-check #inner-container, 89 #oobe.auto-enrollment-check #inner-container,
76 #oobe.autolaunch #inner-container, 90 #oobe.autolaunch #inner-container,
77 #oobe.confirm-password #inner-container, 91 #oobe.confirm-password #inner-container,
78 #oobe:not([md-mode]).connect #inner-container, 92 #oobe:not([md-mode]).connect #inner-container,
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 line-height: 31px; 252 line-height: 31px;
239 text-transform: lowercase; 253 text-transform: lowercase;
240 width: 23em; 254 width: 23em;
241 } 255 }
242 256
243 .header-section::before { 257 .header-section::before {
244 /* Divider in header between product name and title, 258 /* Divider in header between product name and title,
245 * like "[Product name] > [step header]". */ 259 * like "[Product name] > [step header]". */
246 content: '\00A0\203A\00A0\00A0'; 260 content: '\00A0\203A\00A0\00A0';
247 } 261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698