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 | |
|
michaelpg
2016/08/18 19:40:59
asterisks
| |
| 3 found in the LICENSE file. */ | |
| 4 | |
| 5 :host { | |
| 6 --paper-font-subhead_-_font-family: Roboto, sans-serif; | |
|
michaelpg
2016/08/18 19:40:59
These names are implementation details of Polymer'
Alexander Alekseev
2016/08/19 06:00:06
This is needed to style <input> element inside <pa
michaelpg
2016/08/19 06:10:49
I'm sorry, but this is not a good way of doing it.
Alexander Alekseev
2016/08/19 06:25:43
Ok, let's remove this by now (this will result in
| |
| 7 --paper-font-subhead_-_font-size: 13px; | |
| 8 --paper-font-subhead_-_font-weight: normal; | |
| 9 } | |
| 10 | |
| 11 .selected-icon { | |
| 12 --iron-icon-height: 16px; | |
| 13 --iron-icon-width: 16px; | |
| 14 color: var(--google-blue-500); | |
| 15 padding-left: 8px; | |
| 16 } | |
| 17 | |
| 18 paper-item:not([hr]) { | |
|
michaelpg
2016/08/18 19:40:59
:not([hr]) probably isn't necessary
Alexander Alekseev
2016/08/19 06:00:06
Done.
Alexander Alekseev
2016/08/19 06:00:06
Done.
| |
| 19 min-height: 32px; | |
| 20 } | |
| 21 | |
| 22 paper-item[hr] { | |
| 23 min-height: 10px; | |
| 24 } | |
| 25 | |
| 26 .option-name { | |
| 27 color: rgba(0, 0, 0, 0.87); | |
| 28 font-family: Roboto, sans-serif; | |
| 29 font-size: 13px; | |
| 30 font-variant: normal; | |
| 31 } | |
| 32 | |
| 33 .hr { | |
| 34 border-top-color: rgba(0, 0, 0, 0.14); | |
|
michaelpg
2016/08/18 19:40:59
use "border" shorthand
Alexander Alekseev
2016/08/19 06:00:06
Done.
| |
| 35 border-top-style: solid; | |
| 36 border-top-width: 1px; | |
| 37 width: 100%; | |
| 38 } | |
| OLD | NEW |