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

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

Issue 13820014: Show online policy on CrOS EULA page (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add localization and "Loading" string Created 7 years, 8 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
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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 border: 1px solid #d9d9d9; 800 border: 1px solid #d9d9d9;
801 } 801 }
802 802
803 .eula-frame, 803 .eula-frame,
804 #cros-eula, 804 #cros-eula,
805 #oem-eula, 805 #oem-eula,
806 #tos-container { 806 #tos-container {
807 height: 222px; 807 height: 222px;
808 } 808 }
809 809
810 #cros-eula-loading {
811 -webkit-align-items: center;
812 -webkit-flex-direction: column;
813 -webkit-justify-content: center;
814 display: none;
815 height: 100%;
816 width: 100%;
817 }
818
819 .step.eula-loading #cros-eula-frame {
820 display: none;
821 }
822
823 .step.eula-loading #cros-eula-loading {
824 display: -webkit-flex;
825 }
826
810 #cros-eula { 827 #cros-eula {
811 width: 314px; 828 width: 314px;
812 } 829 }
813 830
814 #cros-eula-frame { 831 #cros-eula-frame {
815 width: 309px; 832 width: 309px;
816 } 833 }
817 834
818 #oem-eula { 835 #oem-eula {
819 border-left: none; 836 border-left: none;
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 } 1137 }
1121 1138
1122 .background-initial { 1139 .background-initial {
1123 opacity: 0; 1140 opacity: 0;
1124 } 1141 }
1125 1142
1126 .background-final { 1143 .background-final {
1127 opacity: 1; 1144 opacity: 1;
1128 } 1145 }
1129 1146
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698