| 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 /************* Language Screen **************/ | 5 /************* Language Screen **************/ |
| 6 #languageScreen .language-selection-entry { | 6 #languageScreen .language-selection-entry { |
| 7 border-top: 1px solid lightgrey; | 7 border-top: 1px solid lightgrey; |
| 8 height: 44px; | 8 height: 44px; |
| 9 padding: 0 20px; | 9 padding: 0 20px; |
| 10 } | 10 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } | 29 } |
| 30 | 30 |
| 31 #accessibilityScreen oobe-a11y-option:last-of-type { | 31 #accessibilityScreen oobe-a11y-option:last-of-type { |
| 32 border-bottom: 1px solid rgba(0, 0, 0, 0.14); | 32 border-bottom: 1px solid rgba(0, 0, 0, 0.14); |
| 33 } | 33 } |
| 34 | 34 |
| 35 #accessibilityScreen .bottom-buttons { | 35 #accessibilityScreen .bottom-buttons { |
| 36 padding: 0 24px; | 36 padding: 0 24px; |
| 37 } | 37 } |
| 38 | 38 |
| 39 /************* Accessibility Screen **************/ | 39 /************* Network Selection Screen **************/ |
| 40 #networkSelectionScreen .bottom-buttons { | 40 #networkSelectionScreen .bottom-buttons { |
| 41 padding: 0 6px; /* = 8px - 2px back button border */ | 41 padding: 0 6px; /* = 8px - 2px back button border */ |
| 42 } | 42 } |
| 43 |
| 44 /************* Timezone Screen **************/ |
| 45 #timezoneScreen .timezone-selection-entry { |
| 46 border-top: 1px solid lightgrey; |
| 47 height: 44px; |
| 48 padding: 0 20px; |
| 49 } |
| 50 |
| 51 #timezoneScreen .timezone-selection-entry:last-of-type { |
| 52 border-bottom: 1px solid lightgrey; |
| 53 } |
| 54 |
| 55 #timezoneScreen .timezone-selection-title { |
| 56 color: rgba(0, 0, 0, 0.87); |
| 57 font: 13px Roboto, sans-serif; |
| 58 } |
| 59 |
| 60 #timezoneScreen .bottom-buttons { |
| 61 padding: 0 24px; |
| 62 } |
| OLD | NEW |