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

Side by Side Diff: chrome/browser/resources/login/screen_container.css

Issue 289133002: Add a enterprise enrollment check screen to OOBE in ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 7 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 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: 51px; /* Leave space for the header bar */ 10 bottom: 51px; /* Leave space for the header bar */
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #oobe.kiosk-enable #inner-container, 58 #oobe.kiosk-enable #inner-container,
59 #oobe.oauth-enrollment #inner-container, 59 #oobe.oauth-enrollment #inner-container,
60 #oobe.reset #inner-container, 60 #oobe.reset #inner-container,
61 #oobe.hid-detection #inner-container, 61 #oobe.hid-detection #inner-container,
62 #oobe.update #inner-container, 62 #oobe.update #inner-container,
63 #oobe.user-image #inner-container, 63 #oobe.user-image #inner-container,
64 #oobe.managed-user-creation-dialog #inner-container, 64 #oobe.managed-user-creation-dialog #inner-container,
65 #oobe.managed-user-creation #inner-container, 65 #oobe.managed-user-creation #inner-container,
66 #oobe.password-changed #inner-container, 66 #oobe.password-changed #inner-container,
67 #oobe.terms-of-service #inner-container, 67 #oobe.terms-of-service #inner-container,
68 #oobe.auto-enrollment-check #inner-container,
68 #oobe.wrong-hwid #inner-container, 69 #oobe.wrong-hwid #inner-container,
69 #oobe.confirm-password #inner-container, 70 #oobe.confirm-password #inner-container,
70 #oobe.fatal-error #inner-container { 71 #oobe.fatal-error #inner-container {
71 background: white; 72 background: white;
72 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 73 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3),
73 0 4px 23px 5px rgba(0, 0, 0, 0.2), 74 0 4px 23px 5px rgba(0, 0, 0, 0.2),
74 0 2px 6px rgba(0, 0, 0, 0.15); 75 0 2px 6px rgba(0, 0, 0, 0.15);
75 } 76 }
76 77
77 #oobe.error-message #inner-container, 78 #oobe.error-message #inner-container,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 line-height: 31px; 200 line-height: 31px;
200 text-transform: lowercase; 201 text-transform: lowercase;
201 width: 23em; 202 width: 23em;
202 } 203 }
203 204
204 .header-section::before { 205 .header-section::before {
205 /* Divider in header between product name and title, 206 /* Divider in header between product name and title,
206 * like "[Product name] > [step header]". */ 207 * like "[Product name] > [step header]". */
207 content: '\00A0\203A\00A0\00A0'; 208 content: '\00A0\203A\00A0\00A0';
208 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698