Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | |
|
michaelpg
2016/08/18 19:40:58
I don't understand the naming; how are these "argu
Alexander Alekseev
2016/08/19 06:00:05
Let it be "parameters".
| |
| 2 Use of this source code is governed by a BSD-style license that can be | |
|
michaelpg
2016/08/18 19:40:58
asterisks as other files
Alexander Alekseev
2016/08/19 06:00:05
Done.
| |
| 3 found in the LICENSE file. */ | |
| 4 | |
| 5 iron-icon.oobe-icon { | |
| 6 --iron-icon-height: 32px; | |
| 7 --iron-icon-width: 32px; | |
| 8 color: var(--google-blue-500); | |
| 9 } | |
| 10 | |
| 11 oobe-dialog .header { | |
| 12 color: rgba(0, 0, 0, 0.87); | |
| 13 font-family: Roboto, sans-serif; | |
|
michaelpg
2016/08/18 19:40:58
Hmm, you specify the same font-family in many plac
Alexander Alekseev
2016/08/19 06:00:06
In OOBE it is very difficult to guess what a style
| |
| 14 font-variant: normal; | |
|
michaelpg
2016/08/18 19:40:58
What is this for?
Alexander Alekseev
2016/08/19 06:00:05
Done.
| |
| 15 } | |
| 16 | |
| 17 oobe-dialog h1.title { | |
| 18 color: rgba(0, 0, 0, 0.87); | |
| 19 font-size: 28px; | |
| 20 font-weight: normal; | |
|
michaelpg
2016/08/18 19:40:58
nit: inherit, if you want to use the same font-wei
Alexander Alekseev
2016/08/19 06:00:06
Done.
| |
| 21 margin-bottom: 0; | |
| 22 margin-top: 36px; /* = 64 - font height*/ | |
| 23 } | |
| 24 | |
| 25 oobe-dialog .subtitle { | |
| 26 color: rgba(0, 0, 0, 0.87); | |
| 27 font-size: 13px; | |
| 28 margin-bottom: 0; | |
| 29 margin-top: 27px; /* = 40 - line-height */ | |
| 30 } | |
| 31 | |
| 32 oobe-dialog .footer { | |
| 33 height: 100%; | |
| 34 } | |
| 35 | |
| 36 oobe-dialog .bottom-buttons { | |
| 37 width: 100% | |
| 38 } | |
| OLD | NEW |