Chromium Code Reviews| 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 | |
|
michaelpg
2016/10/05 21:51:41
missing comma
Alexander Alekseev
2016/10/05 22:06:23
Done.
| |
| 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 #cancelHint1, | |
| 18 #cancelHint2 { | |
| 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 |