| 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 bottom: 57px; /* Leave space for the header bar */ | 9 bottom: 57px; /* Leave space for the header bar */ |
| 10 display: -webkit-box; | 10 display: -webkit-box; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 visibility: visible; | 28 visibility: visible; |
| 29 } | 29 } |
| 30 | 30 |
| 31 .pin-container.pin-disabled { | 31 .pin-container.pin-disabled { |
| 32 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ | 32 opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */ |
| 33 transition: none; | 33 transition: none; |
| 34 visibility: hidden; /* Needed because pin-keyboard's offsetHeight is | 34 visibility: hidden; /* Needed because pin-keyboard's offsetHeight is |
| 35 checked to determine if loaded. */ | 35 checked to determine if loaded. */ |
| 36 } | 36 } |
| 37 | 37 |
| 38 .disable-pin-animation .pin-container { | |
| 39 transition: none; | |
| 40 } | |
| 41 | |
| 42 #scroll-container { | 38 #scroll-container { |
| 43 bottom: 0; /* Allows content overlap with control bar. */ | 39 bottom: 0; /* Allows content overlap with control bar. */ |
| 44 left: 0; | 40 left: 0; |
| 45 overflow-x: hidden; | 41 overflow-x: hidden; |
| 46 overflow-y: auto; | 42 overflow-y: auto; |
| 47 position: absolute; | 43 position: absolute; |
| 48 right: 0; | 44 right: 0; |
| 49 top: 0; | 45 top: 0; |
| 50 } | 46 } |
| 51 | 47 |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 line-height: 31px; | 249 line-height: 31px; |
| 254 text-transform: lowercase; | 250 text-transform: lowercase; |
| 255 width: 23em; | 251 width: 23em; |
| 256 } | 252 } |
| 257 | 253 |
| 258 .header-section::before { | 254 .header-section::before { |
| 259 /* Divider in header between product name and title, | 255 /* Divider in header between product name and title, |
| 260 * like "[Product name] > [step header]". */ | 256 * like "[Product name] > [step header]". */ |
| 261 content: '\00A0\203A\00A0\00A0'; | 257 content: '\00A0\203A\00A0\00A0'; |
| 262 } | 258 } |
| OLD | NEW |