| OLD | NEW |
| (Empty) | |
| 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 |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 #estimated-time-left, |
| 6 #progress-message, |
| 7 #cancel-hint { |
| 8 font: 13px Roboto, sans-serif; |
| 9 margin: 0 20px; |
| 10 } |
| 11 |
| 12 #estimated-time-left, |
| 13 #progress-message { |
| 14 padding-top: 31px; /* = 44 - font size */ |
| 15 } |
| 16 |
| 17 #checkingForUpdateCancelHint, |
| 18 #updatingCancelHint { |
| 19 color: rgb(170, 0, 0); |
| 20 padding: 0; |
| 21 } |
| 22 |
| 23 paper-progress { |
| 24 --paper-progress-active-color: var(--google-blue-500); |
| 25 --paper-progress-secondary-color: var(--google-blue-100); |
| 26 bottom: 0; |
| 27 height: 3px; |
| 28 width: 100%; |
| 29 } |
| OLD | NEW |