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

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

Issue 12213110: Implemented screen notifying users about malformed HWID. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Implemented wizard controller test. Created 7 years, 10 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 html[oobe=new] #oobe.eula #inner-container, 121 html[oobe=new] #oobe.eula #inner-container,
122 html[oobe=new] #oobe.gaia-signin #inner-container, 122 html[oobe=new] #oobe.gaia-signin #inner-container,
123 html[oobe=new] #oobe.error-message #inner-container, 123 html[oobe=new] #oobe.error-message #inner-container,
124 html[oobe=new] #oobe.oauth-enrollment #inner-container, 124 html[oobe=new] #oobe.oauth-enrollment #inner-container,
125 html[oobe=new] #oobe.reset #inner-container, 125 html[oobe=new] #oobe.reset #inner-container,
126 html[oobe=new] #oobe.update #inner-container, 126 html[oobe=new] #oobe.update #inner-container,
127 html[oobe=new] #oobe.user-image #inner-container, 127 html[oobe=new] #oobe.user-image #inner-container,
128 html[oobe=new] #oobe.managed-user-creation #inner-container, 128 html[oobe=new] #oobe.managed-user-creation #inner-container,
129 html[oobe=new] #oobe.tpm-error-message #inner-container, 129 html[oobe=new] #oobe.tpm-error-message #inner-container,
130 html[oobe=new] #oobe.password-changed #inner-container, 130 html[oobe=new] #oobe.password-changed #inner-container,
131 html[oobe=new] #oobe.terms-of-service #inner-container { 131 html[oobe=new] #oobe.terms-of-service #inner-container,
132 html[oobe=new] #oobe.wrong-hwid #inner-container {
132 background: -webkit-linear-gradient(rgba(255,255,255,0.99), 133 background: -webkit-linear-gradient(rgba(255,255,255,0.99),
133 rgba(255,255,255,0.95)); 134 rgba(255,255,255,0.95));
134 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 135 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3),
135 0 4px 23px 5px rgba(0, 0, 0, 0.2), 136 0 4px 23px 5px rgba(0, 0, 0, 0.2),
136 0 2px 6px rgba(0, 0, 0, 0.15); 137 0 2px 6px rgba(0, 0, 0, 0.15);
137 } 138 }
138 139
139 /* Only play this animation when 'down' class is removed. */ 140 /* Only play this animation when 'down' class is removed. */
140 html[oobe=new] #inner-container:not(.down) { 141 html[oobe=new] #inner-container:not(.down) {
141 -webkit-transition: -webkit-transform 200ms ease-in-out; 142 -webkit-transition: -webkit-transform 200ms ease-in-out;
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 } 871 }
871 872
872 #account-picker-dot, 873 #account-picker-dot,
873 #enrollment-dot, 874 #enrollment-dot,
874 #oauth-enrollment-dot, 875 #oauth-enrollment-dot,
875 #reset-dot, 876 #reset-dot,
876 #error-message-dot, 877 #error-message-dot,
877 #tpm-error-message-dot, 878 #tpm-error-message-dot,
878 #password-changed-dot, 879 #password-changed-dot,
879 #managed-user-creation-dot, 880 #managed-user-creation-dot,
880 #terms-of-service-dot { 881 #terms-of-service-dot,
882 #wrong-hwid-dot {
881 display: none; 883 display: none;
882 } 884 }
883 885
884 #welcome-message { 886 #welcome-message {
885 color: #444; 887 color: #444;
886 font-size: 16px; 888 font-size: 16px;
887 margin-bottom: 30px; 889 margin-bottom: 30px;
888 } 890 }
889 891
890 #connect table { 892 #connect table {
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1446 width: 100%; 1448 width: 100%;
1447 } 1449 }
1448 1450
1449 .background-initial { 1451 .background-initial {
1450 opacity: 0; 1452 opacity: 0;
1451 } 1453 }
1452 1454
1453 .background-final { 1455 .background-final {
1454 opacity: 1; 1456 opacity: 1;
1455 } 1457 }
1458
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/login.js ('k') | chrome/browser/resources/chromeos/login/oobe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698