| 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 oobe-dialog { |
| 6 max-width: 768px; |
| 7 } |
| 8 |
| 9 oobe-dialog div { |
| 10 line-height: 1.54; /* 20px height for 13px font. */ |
| 11 } |
| 12 |
| 5 paper-progress { | 13 paper-progress { |
| 6 --paper-progress-active-color: var(--google-blue-500); | 14 --paper-progress-active-color: var(--google-blue-500); |
| 7 bottom: 0; | |
| 8 height: 3px; | 15 height: 3px; |
| 16 margin-bottom: 28px; |
| 9 width: 100%; | 17 width: 100%; |
| 10 } | 18 } |
| 11 | 19 |
| 12 .bottom-buttons { | 20 .bottom-buttons { |
| 13 -webkit-padding-end: 16px; | 21 -webkit-padding-end: 16px; |
| 14 } | 22 } |
| 23 |
| 24 oobe-text-button { |
| 25 color: rgb(90, 90, 90); |
| 26 } |
| 27 |
| 28 oobe-dialog > iron-icon { |
| 29 height: 32px; |
| 30 width: 32px; |
| 31 } |
| 32 |
| 33 oobe-dialog > iron-icon.warning { |
| 34 --iron-icon-fill-color: rgb(219, 68, 55); |
| 35 } |
| 36 |
| 37 .chrome-logo { |
| 38 background: url(chrome://oobe/product-logo.png) center/100% no-repeat; |
| 39 } |
| 40 |
| 41 .footer div { |
| 42 color: rgb(51, 51, 51); |
| 43 font-size: 13px; |
| 44 } |
| 45 |
| 46 .footer div.warning { |
| 47 color: rgb(197, 57, 41); |
| 48 font-weight: 500; |
| 49 } |
| OLD | NEW |