OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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: 600px; | 9 -webkit-perspective: 600px; |
10 bottom: 48px; /* Leave space for the header bar */ | 10 bottom: 48px; /* Leave space for the header bar */ |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 #oobe.eula #eula-dot, | 117 #oobe.eula #eula-dot, |
118 #oobe.gaia-signin #gaia-signin-dot, | 118 #oobe.gaia-signin #gaia-signin-dot, |
119 #oobe.oauth-enrollment #gaia-signin-dot, | 119 #oobe.oauth-enrollment #gaia-signin-dot, |
120 #oobe.oauth-enrollment #signin-dot, | 120 #oobe.oauth-enrollment #signin-dot, |
121 #oobe.signin #signin-dot, | 121 #oobe.signin #signin-dot, |
122 #oobe.update #update-dot, | 122 #oobe.update #update-dot, |
123 #oobe.user-image #user-image-dot { | 123 #oobe.user-image #user-image-dot { |
124 opacity: 1; | 124 opacity: 1; |
125 } | 125 } |
126 | 126 |
127 body.login-display #inner-container { | 127 body:not(.oobe-display) #inner-container { |
128 height: 262px; | 128 height: 262px; |
129 padding: 0; | 129 padding: 0; |
130 width: 1100px; | 130 width: 1100px; |
131 } | 131 } |
132 | 132 |
133 body.login-display #progress-dots { | 133 body:not(.oobe-display) #progress-dots { |
134 display: none; | 134 display: none; |
135 } | 135 } |
136 | 136 |
137 html[build=chrome] #header-sections { | 137 html[build=chrome] #header-sections { |
138 -webkit-margin-start: -48px; | 138 -webkit-margin-start: -48px; |
139 } | 139 } |
140 | 140 |
141 html[build=chromium] #header-sections { | 141 html[build=chromium] #header-sections { |
142 -webkit-margin-start: 5px; | 142 -webkit-margin-start: 5px; |
143 } | 143 } |
144 | 144 |
145 .header-section { | 145 .header-section { |
146 color: rgb(119, 120, 123); /* Should matching text color of the logo. */ | 146 color: rgb(119, 120, 123); /* Should matching text color of the logo. */ |
147 display: none; | 147 display: none; |
148 font-size: 23px; | 148 font-size: 23px; |
149 line-height: 31px; | 149 line-height: 31px; |
150 text-transform: lowercase; | 150 text-transform: lowercase; |
151 width: 20em; | 151 width: 20em; |
152 } | 152 } |
153 | 153 |
154 .header-section::before { | 154 .header-section::before { |
155 /* Divider in header between product name and title, | 155 /* Divider in header between product name and title, |
156 * like "[Product name] > [step header]". */ | 156 * like "[Product name] > [step header]". */ |
157 content: '\00A0\203A\00A0\00A0'; | 157 content: '\00A0\203A\00A0\00A0'; |
158 } | 158 } |
159 | 159 |
OLD | NEW |