| 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 */ |
| 11 display: -webkit-box; | 11 display: -webkit-box; |
| 12 left: 0; | 12 left: 0; |
| 13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */ | 13 min-height: 717px; /* This enables scrolling. Min resolution: 1024x768 */ |
| 14 position: absolute; | 14 position: absolute; |
| 15 right: 0; | 15 right: 0; |
| 16 top: 0; | 16 top: 0; |
| 17 z-index: 1; | 17 z-index: 1; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .oobe-display #outer-container { | 20 .oobe-display #outer-container { |
| 21 -webkit-perspective: 600px; | 21 -webkit-perspective: 600px; |
| 22 } | 22 } |
| 23 | 23 |
| 24 #pin-container { |
| 25 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ |
| 26 transition: opacity 200ms ease-in-out; |
| 27 } |
| 28 |
| 24 #scroll-container { | 29 #scroll-container { |
| 25 bottom: 0; /* Allows content overlap with control bar. */ | 30 bottom: 0; /* Allows content overlap with control bar. */ |
| 26 left: 0; | 31 left: 0; |
| 27 overflow-x: hidden; | 32 overflow-x: hidden; |
| 28 overflow-y: auto; | 33 overflow-y: auto; |
| 29 position: absolute; | 34 position: absolute; |
| 30 right: 0; | 35 right: 0; |
| 31 top: 0; | 36 top: 0; |
| 32 } | 37 } |
| 33 | 38 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 line-height: 31px; | 212 line-height: 31px; |
| 208 text-transform: lowercase; | 213 text-transform: lowercase; |
| 209 width: 23em; | 214 width: 23em; |
| 210 } | 215 } |
| 211 | 216 |
| 212 .header-section::before { | 217 .header-section::before { |
| 213 /* Divider in header between product name and title, | 218 /* Divider in header between product name and title, |
| 214 * like "[Product name] > [step header]". */ | 219 * like "[Product name] > [step header]". */ |
| 215 content: '\00A0\203A\00A0\00A0'; | 220 content: '\00A0\203A\00A0\00A0'; |
| 216 } | 221 } |
| OLD | NEW |