Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 a { | 5 a { |
| 6 color: var(--google-blue-500); | 6 color: var(--google-blue-500); |
| 7 text-decoration: none; | 7 text-decoration: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #crosEulaFrame, | 10 #crosEulaFrame, |
| 11 #installationSettings, | 11 #installationSettings, |
| 12 #logging { | 12 #logging { |
| 13 font: 13px Roboto, sans-serif; | 13 font: 13px Roboto, sans-serif; |
| 14 margin: 0 20px; | |
| 15 } | 14 } |
| 16 | 15 |
| 17 #installationSettings { | 16 #installationSettings { |
| 18 padding-top: 31px; /* = 44 - font size */ | 17 padding-top: 31px; /* = 44 - font size */ |
| 19 } | 18 } |
| 20 | 19 |
| 21 #logging { | 20 #logging { |
| 22 color: rgba(0, 0, 0, 0.54); | 21 color: rgba(0, 0, 0, 0.54); |
| 23 padding-top: 21px; /* = 36 - font size */ | 22 padding-top: 21px; /* = 36 - font size */ |
| 24 } | 23 } |
| 25 | 24 |
| 26 #usageStats { | 25 #usageStats { |
| 27 --paper-checkbox-size: 16px; | 26 --paper-checkbox-size: 20px; |
| 27 --paper-checkbox-checked-color: rgb(66, 133, 244); /* #4285f4 */ | |
|
michaelpg
2017/01/16 17:57:47
nit: the hex comment isn't helpful. if you really
Alexander Alekseev
2017/01/17 00:39:16
This is mainly for grepping it later as our design
| |
| 28 /* End padding must be greater than --paper-checkbox-label-spacing */ | 28 /* End padding must be greater than --paper-checkbox-label-spacing */ |
| 29 -webkit-padding-end: 16px; | 29 -webkit-padding-end: 16px; |
| 30 max-width: 550px; | 30 max-width: 550px; |
| 31 padding-bottom: 20px; | 31 padding-bottom: 20px; |
| 32 } | 32 } |
| 33 | 33 |
| 34 #accept-button-text { | |
| 35 text-transform: uppercase; | |
| 36 } | |
| 37 | |
| 38 .bottom-buttons { | 34 .bottom-buttons { |
| 39 padding: 0 6px; /* = 8px - 2px back button border */ | 35 padding: 0 6px; /* = 8px - 2px back button border */ |
| 40 } | 36 } |
| 41 | 37 |
| 42 #eula-accept-button { | 38 #eula-accept-button { |
| 43 -webkit-padding-end: 18px; | 39 -webkit-padding-end: 18px; |
| 44 } | 40 } |
| OLD | NEW |