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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 border: 1px solid #d9d9d9; | 803 border: 1px solid #d9d9d9; |
804 } | 804 } |
805 | 805 |
806 .eula-frame, | 806 .eula-frame, |
807 #cros-eula, | 807 #cros-eula, |
808 #oem-eula, | 808 #oem-eula, |
809 #tos-container { | 809 #tos-container { |
810 height: 222px; | 810 height: 222px; |
811 } | 811 } |
812 | 812 |
| 813 #cros-eula-loading { |
| 814 -webkit-align-items: center; |
| 815 -webkit-flex-direction: column; |
| 816 -webkit-justify-content: center; |
| 817 display: none; |
| 818 height: 100%; |
| 819 width: 100%; |
| 820 } |
| 821 |
| 822 .step.eula-loading #cros-eula-frame { |
| 823 display: none; |
| 824 } |
| 825 |
| 826 .step.eula-loading #cros-eula-loading { |
| 827 display: -webkit-flex; |
| 828 } |
| 829 |
813 #cros-eula { | 830 #cros-eula { |
814 width: 314px; | 831 width: 314px; |
815 } | 832 } |
816 | 833 |
817 #cros-eula-frame { | 834 #cros-eula-frame { |
818 width: 309px; | 835 width: 309px; |
819 } | 836 } |
820 | 837 |
821 #oem-eula { | 838 #oem-eula { |
822 border-left: none; | 839 border-left: none; |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1123 } | 1140 } |
1124 | 1141 |
1125 .background-initial { | 1142 .background-initial { |
1126 opacity: 0; | 1143 opacity: 0; |
1127 } | 1144 } |
1128 | 1145 |
1129 .background-final { | 1146 .background-final { |
1130 opacity: 1; | 1147 opacity: 1; |
1131 } | 1148 } |
1132 | 1149 |
OLD | NEW |