| OLD | NEW |
| 1 /* Copyright 2017 The Chromium Authors. All rights reserved. | 1 /* Copyright 2017 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 .bottom-buttons { | 5 .bottom-buttons { |
| 6 width: 100%; | 6 width: 100%; |
| 7 } | 7 } |
| 8 | 8 |
| 9 .reset-popup { | 9 .reset-popup { |
| 10 background: white; | 10 background: white; |
| 11 border-radius: 2px; |
| 11 box-shadow: 0 0 16px rgba(0, 0, 0, .12), 0 16px 16px rgba(0, 0, 0, .24); | 12 box-shadow: 0 0 16px rgba(0, 0, 0, .12), 0 16px 16px rgba(0, 0, 0, .24); |
| 12 min-height: 158px; | 13 min-height: 158px; |
| 13 position: relative; | 14 position: relative; |
| 14 width: 512px; | 15 width: 512px; |
| 16 z-index: 10; |
| 15 } | 17 } |
| 16 | 18 |
| 17 .reset-popup h1 { | 19 .reset-popup h1 { |
| 18 -webkit-margin-after: 0; | |
| 19 -webkit-margin-before: 0; | |
| 20 color: var(--google-grey-900); | 20 color: var(--google-grey-900); |
| 21 font: 15px Roboto, sans-serif; | 21 font: 15px Roboto, sans-serif; |
| 22 margin-bottom: 0; |
| 23 margin-top: 0; |
| 22 padding: 16px 20px; | 24 padding: 16px 20px; |
| 23 } | 25 } |
| 24 | 26 |
| 25 .reset-popup-content-area { | 27 .reset-popup-content-area { |
| 26 color: rgba(0, 0, 0, .54); | 28 color: rgba(0, 0, 0, .54); |
| 27 font: 13px Roboto, sans-serif; | 29 font: 13px Roboto, sans-serif; |
| 28 line-height: 20px; | 30 line-height: 20px; |
| 29 padding: 0 20px 20.5px; | 31 padding: 0 20px 20.5px; |
| 30 } | 32 } |
| 31 | 33 |
| 32 oobe-text-button { | 34 oobe-text-button { |
| 33 -webkit-margin-end: 16px; | 35 -webkit-margin-end: 16px; |
| 34 -webkit-margin-after: 16px; | |
| 35 color: #5a5a5a; | 36 color: #5a5a5a; |
| 37 margin-bottom: 16px; |
| 36 } | 38 } |
| 37 | 39 |
| 38 #cancelButton { | 40 #cancelButton { |
| 39 -webkit-margin-end: 4px; | 41 -webkit-margin-end: 4px; |
| 40 } | 42 } |
| OLD | NEW |