| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 #header-container { | 5 #header-container { |
| 6 padding: 64px 64px 0 64px; | 6 padding: 64px 64px 0 64px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #header-container[android] { |
| 10 padding: 48px 48px 0 48px; |
| 11 } |
| 12 |
| 9 .oobe-header { | 13 .oobe-header { |
| 10 min-height: 84px; /* 64 title + 20 subtitle */ | 14 min-height: 84px; /* 64 title + 20 subtitle */ |
| 11 } | 15 } |
| 12 | 16 |
| 13 #footer-container { | 17 #footer-container { |
| 14 padding: 44px 64px 0 64px; | 18 padding: 44px 64px 0 64px; |
| 15 } | 19 } |
| 16 | 20 |
| 17 #footer-container[noFooter] { | 21 #footer-container[noFooter] { |
| 18 padding: 0; | 22 padding: 0; |
| 19 } | 23 } |
| 20 | 24 |
| 21 #oobe-bottom { | 25 #oobe-bottom { |
| 22 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14); | 26 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14); |
| 23 height: 80px; | 27 height: 80px; |
| 24 padding: 0; | 28 padding: 0; |
| 25 z-index: 1; | 29 z-index: 1; |
| 26 } | 30 } |
| 27 | 31 |
| 28 #oobe-bottom[hideShadow] { | 32 #oobe-bottom[hideShadow] { |
| 29 box-shadow: 0 0 0 rgba(0, 0, 0, 0); | 33 box-shadow: 0 0 0 rgba(0, 0, 0, 0); |
| 30 } | 34 } |
| 35 |
| 36 #oobe-bottom[android] { |
| 37 height: 60px; |
| 38 } |
| OLD | NEW |