OLD | NEW |
---|---|
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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
114 | 114 |
115 /* Screens that have a border and background. */ | 115 /* Screens that have a border and background. */ |
116 html[oobe=new] #oobe.connect #inner-container, | 116 html[oobe=new] #oobe.connect #inner-container, |
117 html[oobe=new] #oobe.enrollment #inner-container, | 117 html[oobe=new] #oobe.enrollment #inner-container, |
118 html[oobe=new] #oobe.eula #inner-container, | 118 html[oobe=new] #oobe.eula #inner-container, |
119 html[oobe=new] #oobe.gaia-signin #inner-container, | 119 html[oobe=new] #oobe.gaia-signin #inner-container, |
120 html[oobe=new] #oobe.oauth-enrollment #inner-container, | 120 html[oobe=new] #oobe.oauth-enrollment #inner-container, |
121 html[oobe=new] #oobe.reset #inner-container, | 121 html[oobe=new] #oobe.reset #inner-container, |
122 html[oobe=new] #oobe.update #inner-container, | 122 html[oobe=new] #oobe.update #inner-container, |
123 html[oobe=new] #oobe.user-image #inner-container, | 123 html[oobe=new] #oobe.user-image #inner-container, |
124 html[oobe=new] #oobe.tpm-error-message #inner-container { | 124 html[oobe=new] #oobe.tpm-error-message #inner-container, |
125 html[oobe=new] #oobe.public-account-signin #inner-container { | |
bartfab (slow)
2012/11/28 15:11:38
Nit: Alphabetic order (tpm-error-message already v
xiyuan
2012/12/01 00:24:19
PublicAccountSigninScreen is dead now and this fil
| |
125 background: -webkit-linear-gradient(rgba(255,255,255,0.99), | 126 background: -webkit-linear-gradient(rgba(255,255,255,0.99), |
126 rgba(255,255,255,0.95)); | 127 rgba(255,255,255,0.95)); |
127 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), | 128 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), |
128 0 4px 23px 5px rgba(0, 0, 0, 0.2), | 129 0 4px 23px 5px rgba(0, 0, 0, 0.2), |
129 0 2px 6px rgba(0, 0, 0, 0.15); | 130 0 2px 6px rgba(0, 0, 0, 0.15); |
130 } | 131 } |
131 | 132 |
132 /* Only play this animation when 'down' class is removed. */ | 133 /* Only play this animation when 'down' class is removed. */ |
133 html[oobe=new] #inner-container:not(.down) { | 134 html[oobe=new] #inner-container:not(.down) { |
134 -webkit-transition: -webkit-transform 200ms ease-in-out; | 135 -webkit-transition: -webkit-transform 200ms ease-in-out; |
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
831 #oobe.oauth-enrollment #signin-dot, | 832 #oobe.oauth-enrollment #signin-dot, |
832 #oobe.signin #signin-dot, | 833 #oobe.signin #signin-dot, |
833 #oobe.update #update-dot, | 834 #oobe.update #update-dot, |
834 #oobe.user-image #user-image-dot { | 835 #oobe.user-image #user-image-dot { |
835 opacity: 1; | 836 opacity: 1; |
836 } | 837 } |
837 | 838 |
838 #account-picker-dot, | 839 #account-picker-dot, |
839 #enrollment-dot, | 840 #enrollment-dot, |
840 #oauth-enrollment-dot, | 841 #oauth-enrollment-dot, |
841 #reset-dot { | 842 #reset-dot, |
843 #public-account-signin-dot { | |
842 display: none; | 844 display: none; |
843 } | 845 } |
844 | 846 |
845 #welcome-message { | 847 #welcome-message { |
846 color: #444; | 848 color: #444; |
847 font-size: 16px; | 849 font-size: 16px; |
848 margin-bottom: 30px; | 850 margin-bottom: 30px; |
849 } | 851 } |
850 | 852 |
851 #connect table { | 853 #connect table { |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1405 width: 100%; | 1407 width: 100%; |
1406 } | 1408 } |
1407 | 1409 |
1408 .background-initial { | 1410 .background-initial { |
1409 opacity: 0; | 1411 opacity: 0; |
1410 } | 1412 } |
1411 | 1413 |
1412 .background-final { | 1414 .background-final { |
1413 opacity: 1; | 1415 opacity: 1; |
1414 } | 1416 } |
OLD | NEW |