| 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: 57px; /* Leave space for the header bar */ | 10 bottom: 57px; /* Leave space for the header bar */ |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 } | 115 } |
| 116 | 116 |
| 117 #progress-dots { | 117 #progress-dots { |
| 118 -webkit-box-pack: center; | 118 -webkit-box-pack: center; |
| 119 -webkit-transition: opacity 200ms ease-in-out, | 119 -webkit-transition: opacity 200ms ease-in-out, |
| 120 visibility 200ms ease-in-out; | 120 visibility 200ms ease-in-out; |
| 121 display: -webkit-box; | 121 display: -webkit-box; |
| 122 margin-top: 15px; | 122 margin-top: 15px; |
| 123 } | 123 } |
| 124 | 124 |
| 125 #oobe[md-mode] #progress-dots { |
| 126 display: none; |
| 127 } |
| 128 |
| 125 /* Hidden for the duration of initial transition. */ | 129 /* Hidden for the duration of initial transition. */ |
| 126 .oobe-display #progress-dots.down { | 130 .oobe-display #progress-dots.down { |
| 127 visibility: hidden; | 131 visibility: hidden; |
| 128 } | 132 } |
| 129 | 133 |
| 130 .progdot { | 134 .progdot { |
| 131 -webkit-margin-end: 12px; | 135 -webkit-margin-end: 12px; |
| 132 background: white; | 136 background: white; |
| 133 height: 10px; | 137 height: 10px; |
| 134 opacity: 0.4; | 138 opacity: 0.4; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 line-height: 31px; | 223 line-height: 31px; |
| 220 text-transform: lowercase; | 224 text-transform: lowercase; |
| 221 width: 23em; | 225 width: 23em; |
| 222 } | 226 } |
| 223 | 227 |
| 224 .header-section::before { | 228 .header-section::before { |
| 225 /* Divider in header between product name and title, | 229 /* Divider in header between product name and title, |
| 226 * like "[Product name] > [step header]". */ | 230 * like "[Product name] > [step header]". */ |
| 227 content: '\00A0\203A\00A0\00A0'; | 231 content: '\00A0\203A\00A0\00A0'; |
| 228 } | 232 } |
| OLD | NEW |