| 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 :host { |
| 6 --paper-font-subhead_-_font-family: Roboto, sans-serif; |
| 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 { |
| 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: 13px Roboto, sans-serif; |
| 29 } |
| 30 |
| 31 .hr { |
| 32 border-top: 1px solid rgba(0, 0, 0, 0.14); |
| 33 width: 100%; |
| 34 } |
| OLD | NEW |