| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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: 1px; /* Workaround, see http://crbug.com/360567 */ | 9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */ |
| 10 bottom: 51px; /* Leave space for the header bar */ | 10 bottom: 51px; /* Leave space for the header bar */ |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 #oobe.eula #eula-dot, | 154 #oobe.eula #eula-dot, |
| 155 #oobe.gaia-signin #gaia-signin-dot, | 155 #oobe.gaia-signin #gaia-signin-dot, |
| 156 #oobe.oauth-enrollment #gaia-signin-dot, | 156 #oobe.oauth-enrollment #gaia-signin-dot, |
| 157 #oobe.oauth-enrollment #signin-dot, | 157 #oobe.oauth-enrollment #signin-dot, |
| 158 #oobe.signin #signin-dot, | 158 #oobe.signin #signin-dot, |
| 159 #oobe.update #update-dot, | 159 #oobe.update #update-dot, |
| 160 #oobe.user-image #user-image-dot { | 160 #oobe.user-image #user-image-dot { |
| 161 opacity: 1; | 161 opacity: 1; |
| 162 } | 162 } |
| 163 | 163 |
| 164 #oobe.reset #progress-dots { | 164 #oobe.reset #progress-dots, |
| 165 #oobe.hid-detection #progress-dots { |
| 165 visibility: hidden; | 166 visibility: hidden; |
| 166 } | 167 } |
| 167 | 168 |
| 168 body:not(.oobe-display) #inner-container { | 169 body:not(.oobe-display) #inner-container { |
| 169 height: 262px; | 170 height: 262px; |
| 170 padding: 0; | 171 padding: 0; |
| 171 width: 1100px; | 172 width: 1100px; |
| 172 } | 173 } |
| 173 | 174 |
| 174 body:not(.oobe-display) #progress-dots { | 175 body:not(.oobe-display) #progress-dots { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 199 line-height: 31px; | 200 line-height: 31px; |
| 200 text-transform: lowercase; | 201 text-transform: lowercase; |
| 201 width: 23em; | 202 width: 23em; |
| 202 } | 203 } |
| 203 | 204 |
| 204 .header-section::before { | 205 .header-section::before { |
| 205 /* Divider in header between product name and title, | 206 /* Divider in header between product name and title, |
| 206 * like "[Product name] > [step header]". */ | 207 * like "[Product name] > [step header]". */ |
| 207 content: '\00A0\203A\00A0\00A0'; | 208 content: '\00A0\203A\00A0\00A0'; |
| 208 } | 209 } |
| OLD | NEW |