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

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

Issue 2247723002: ChromeOS: Implement EULA screen of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. Created 4 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
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc ('k') | 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 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 */
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 #inner-container.animation { 56 #inner-container.animation {
57 overflow: hidden; 57 overflow: hidden;
58 } 58 }
59 59
60 #inner-container.disabled { 60 #inner-container.disabled {
61 opacity: 0.4; 61 opacity: 0.4;
62 pointer-events: none; 62 pointer-events: none;
63 } 63 }
64 64
65
66 #oobe[md-mode] #progress-dots {
67 display: none;
68 }
69
65 /* Screens that have a border and background. */ 70 /* Screens that have a border and background. */
66 #oobe.auto-enrollment-check #inner-container, 71 #oobe.auto-enrollment-check #inner-container,
67 #oobe.autolaunch #inner-container, 72 #oobe.autolaunch #inner-container,
68 #oobe.confirm-password #inner-container, 73 #oobe.confirm-password #inner-container,
69 #oobe.connect #inner-container, 74 #oobe:not([md-mode]).connect #inner-container,
70 #oobe.debugging #inner-container, 75 #oobe.debugging #inner-container,
71 #oobe.enrollment #inner-container, 76 #oobe.enrollment #inner-container,
72 #oobe.eula #inner-container, 77 #oobe:not([md-mode]).eula #inner-container,
73 #oobe.fatal-error #inner-container, 78 #oobe.fatal-error #inner-container,
74 #oobe.gaia-signin #inner-container, 79 #oobe.gaia-signin #inner-container,
75 #oobe.hid-detection #inner-container, 80 #oobe.hid-detection #inner-container,
76 #oobe.kiosk-enable #inner-container, 81 #oobe.kiosk-enable #inner-container,
77 #oobe.oauth-enrollment #inner-container, 82 #oobe.oauth-enrollment #inner-container,
78 #oobe.password-changed #inner-container, 83 #oobe.password-changed #inner-container,
79 #oobe.reset #inner-container, 84 #oobe.reset #inner-container,
80 #oobe.supervised-user-creation #inner-container, 85 #oobe.supervised-user-creation #inner-container,
81 #oobe.supervised-user-creation-dialog #inner-container, 86 #oobe.supervised-user-creation-dialog #inner-container,
82 #oobe.terms-of-service #inner-container, 87 #oobe.terms-of-service #inner-container,
(...skipping 17 matching lines...) Expand all
100 105
101 /* Only play this animation when 'down' class is removed. */ 106 /* Only play this animation when 'down' class is removed. */
102 .oobe-display #inner-container:not(.down) { 107 .oobe-display #inner-container:not(.down) {
103 -webkit-transition: transform 200ms ease-in-out; 108 -webkit-transition: transform 200ms ease-in-out;
104 } 109 }
105 110
106 .oobe-display #inner-container.down { 111 .oobe-display #inner-container.down {
107 transform: translateY(50px) rotateX(-2.5deg); 112 transform: translateY(50px) rotateX(-2.5deg);
108 } 113 }
109 114
110 #step-logo { 115 #oobe:not([md-mode]) #step-logo {
111 -webkit-margin-start: 17px; 116 -webkit-margin-start: 17px;
112 display: -webkit-box; 117 display: -webkit-box;
113 position: absolute; 118 position: absolute;
114 top: 15px; 119 top: 15px;
115 } 120 }
116 121
122 #oobe[md-mode] #step-logo {
123 visibility: hidden;
124 }
125
117 #progress-dots { 126 #progress-dots {
118 -webkit-box-pack: center; 127 -webkit-box-pack: center;
119 -webkit-transition: opacity 200ms ease-in-out, 128 -webkit-transition: opacity 200ms ease-in-out,
120 visibility 200ms ease-in-out; 129 visibility 200ms ease-in-out;
121 display: -webkit-box; 130 display: -webkit-box;
122 margin-top: 15px; 131 margin-top: 15px;
123 } 132 }
124 133
134 #oobe[md-mode] #progress-dots {
135 display: none;
136 }
137
125 /* Hidden for the duration of initial transition. */ 138 /* Hidden for the duration of initial transition. */
126 .oobe-display #progress-dots.down { 139 .oobe-display #progress-dots.down {
127 visibility: hidden; 140 visibility: hidden;
128 } 141 }
129 142
130 .progdot { 143 .progdot {
131 -webkit-margin-end: 12px; 144 -webkit-margin-end: 12px;
132 background: white; 145 background: white;
133 height: 10px; 146 height: 10px;
134 opacity: 0.4; 147 opacity: 0.4;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 line-height: 31px; 232 line-height: 31px;
220 text-transform: lowercase; 233 text-transform: lowercase;
221 width: 23em; 234 width: 23em;
222 } 235 }
223 236
224 .header-section::before { 237 .header-section::before {
225 /* Divider in header between product name and title, 238 /* Divider in header between product name and title,
226 * like "[Product name] > [step header]". */ 239 * like "[Product name] > [step header]". */
227 content: '\00A0\203A\00A0\00A0'; 240 content: '\00A0\203A\00A0\00A0';
228 } 241 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/eula_screen_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698