| 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 :root { |
| 6 --oobe-dialog-list-item-border: 1px solid rgba(0, 0, 0, 0.06); |
| 7 } |
| 8 |
| 5 /************* Language Screen **************/ | 9 /************* Language Screen **************/ |
| 6 #languageScreen .language-selection-entry { | 10 #languageScreen .language-selection-entry { |
| 7 border-top: 1px solid lightgrey; | 11 border-top: var(--oobe-dialog-list-item-border); |
| 8 height: 44px; | 12 height: 44px; |
| 9 padding: 0 10px; | 13 padding: 0 10px; |
| 10 } | 14 } |
| 11 | 15 |
| 12 #languageScreen .language-selection-entry:last-of-type { | 16 #languageScreen .language-selection-entry:last-of-type { |
| 13 border-bottom: 1px solid lightgrey; | 17 border-bottom: var(--oobe-dialog-list-item-border); |
| 14 } | 18 } |
| 15 | 19 |
| 16 #languageScreen .language-selection-title { | 20 #languageScreen .language-selection-title { |
| 17 color: rgba(0, 0, 0, 0.87); | 21 color: rgba(0, 0, 0, 0.87); |
| 18 font: 13px Roboto, sans-serif; | 22 font: 13px Roboto, sans-serif; |
| 19 } | 23 } |
| 20 | 24 |
| 21 #languageScreen .bottom-buttons { | 25 #languageScreen .bottom-buttons { |
| 22 padding: 0 24px; | 26 padding: 0 24px; |
| 23 } | 27 } |
| 24 | 28 |
| 25 /************* Accessibility Screen **************/ | 29 /************* Accessibility Screen **************/ |
| 26 #accessibilityScreen oobe-a11y-option { | 30 #accessibilityScreen oobe-a11y-option { |
| 27 border-top: 1px solid lightgrey; | 31 border-top: var(--oobe-dialog-list-item-border); |
| 28 min-height: 56px; | 32 min-height: 56px; |
| 29 } | 33 } |
| 30 | 34 |
| 31 #accessibilityScreen oobe-a11y-option:last-of-type { | 35 #accessibilityScreen oobe-a11y-option:last-of-type { |
| 32 border-bottom: 1px solid rgba(0, 0, 0, 0.14); | 36 border-bottom: var(--oobe-dialog-list-item-border); |
| 33 } | 37 } |
| 34 | 38 |
| 35 #accessibilityScreen .bottom-buttons { | 39 #accessibilityScreen .bottom-buttons { |
| 36 padding: 0 24px; | 40 padding: 0 24px; |
| 37 } | 41 } |
| 38 | 42 |
| 39 /************* Network Selection Screen **************/ | 43 /************* Network Selection Screen **************/ |
| 40 #networkSelectionScreen .footer { | 44 #networkSelectionScreen .footer { |
| 41 max-height: 313px; | 45 max-height: 313px; |
| 42 } | 46 } |
| 43 | 47 |
| 44 #networkSelectionScreen .bottom-buttons { | 48 #networkSelectionScreen .bottom-buttons { |
| 45 padding: 0 6px; /* = 8px - 2px back button border */ | 49 padding: 0 6px; /* = 8px - 2px back button border */ |
| 46 } | 50 } |
| 47 | 51 |
| 48 /************* Timezone Screen **************/ | 52 /************* Timezone Screen **************/ |
| 49 #timezoneScreen .timezone-selection-entry { | 53 #timezoneScreen .timezone-selection-entry { |
| 50 border-top: 1px solid lightgrey; | 54 border-top: var(--oobe-dialog-list-item-border); |
| 51 height: 44px; | 55 height: 44px; |
| 52 padding: 0 20px; | 56 padding: 0 20px; |
| 53 } | 57 } |
| 54 | 58 |
| 55 #timezoneScreen .timezone-selection-entry:last-of-type { | 59 #timezoneScreen .timezone-selection-entry:last-of-type { |
| 56 border-bottom: 1px solid lightgrey; | 60 border-bottom: var(--oobe-dialog-list-item-border); |
| 57 } | 61 } |
| 58 | 62 |
| 59 #timezoneScreen .timezone-selection-title { | 63 #timezoneScreen .timezone-selection-title { |
| 60 color: rgba(0, 0, 0, 0.87); | 64 color: rgba(0, 0, 0, 0.87); |
| 61 font: 13px Roboto, sans-serif; | 65 font: 13px Roboto, sans-serif; |
| 62 } | 66 } |
| 63 | 67 |
| 64 #timezoneScreen .bottom-buttons { | 68 #timezoneScreen .bottom-buttons { |
| 65 padding: 0 24px; | 69 padding: 0 24px; |
| 66 } | 70 } |
| OLD | NEW |