| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 #oobe.error-message #inner-container, | 111 #oobe.error-message #inner-container, |
| 112 #oobe.tpm-error-message #inner-container { | 112 #oobe.tpm-error-message #inner-container { |
| 113 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), | 113 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), |
| 114 0 4px 23px 5px rgba(0, 0, 0, 0.2), | 114 0 4px 23px 5px rgba(0, 0, 0, 0.2), |
| 115 0 2px 6px rgba(0, 0, 0, 0.15); | 115 0 2px 6px rgba(0, 0, 0, 0.15); |
| 116 | 116 |
| 117 } | 117 } |
| 118 | 118 |
| 119 /* Only play this animation when 'down' class is removed. */ | 119 /* Only play this animation when 'down' class is removed. */ |
| 120 #inner-container:not(.down) { | 120 .oobe-display #inner-container:not(.down) { |
| 121 -webkit-transition: -webkit-transform 200ms ease-in-out; | 121 -webkit-transition: -webkit-transform 200ms ease-in-out; |
| 122 } | 122 } |
| 123 | 123 |
| 124 #inner-container.down { | 124 .oobe-display #inner-container.down { |
| 125 -webkit-transform: translateY(50px) rotateX(-2.5deg); | 125 -webkit-transform: translateY(50px) rotateX(-2.5deg); |
| 126 } | 126 } |
| 127 | 127 |
| 128 #eula #stats-help-link { | 128 #eula #stats-help-link { |
| 129 color: rgb(49, 106, 197); | 129 color: rgb(49, 106, 197); |
| 130 } | 130 } |
| 131 | 131 |
| 132 #step-logo { | 132 #step-logo { |
| 133 -webkit-margin-start: 17px; | 133 -webkit-margin-start: 17px; |
| 134 display: -webkit-box; | 134 display: -webkit-box; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 -webkit-transform: translateX(-50px) | 224 -webkit-transform: translateX(-50px) |
| 225 } | 225 } |
| 226 | 226 |
| 227 #progress-dots { | 227 #progress-dots { |
| 228 -webkit-box-pack: center; | 228 -webkit-box-pack: center; |
| 229 -webkit-margin-before: 15px; | 229 -webkit-margin-before: 15px; |
| 230 display: -webkit-box; | 230 display: -webkit-box; |
| 231 } | 231 } |
| 232 | 232 |
| 233 /* Hidden for the duration of initial transition. */ | 233 /* Hidden for the duration of initial transition. */ |
| 234 #progress-dots.down { | 234 .oobe-display #progress-dots.down { |
| 235 visibility: hidden; | 235 visibility: hidden; |
| 236 } | 236 } |
| 237 | 237 |
| 238 .progdot { | 238 .progdot { |
| 239 -webkit-margin-end: 12px; | 239 -webkit-margin-end: 12px; |
| 240 background: white; | 240 background: white; |
| 241 height: 10px; | 241 height: 10px; |
| 242 opacity: 0.4; | 242 opacity: 0.4; |
| 243 width: 10px; | 243 width: 10px; |
| 244 } | 244 } |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 } | 1120 } |
| 1121 | 1121 |
| 1122 .background-initial { | 1122 .background-initial { |
| 1123 opacity: 0; | 1123 opacity: 0; |
| 1124 } | 1124 } |
| 1125 | 1125 |
| 1126 .background-final { | 1126 .background-final { |
| 1127 opacity: 1; | 1127 opacity: 1; |
| 1128 } | 1128 } |
| 1129 | 1129 |
| OLD | NEW |