| 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 :host { | 5 :host { |
| 6 background-color: white; | 6 background-color: white; |
| 7 display: flex; | 7 display: flex; |
| 8 width: 100%; | 8 width: 100%; |
| 9 } | 9 } |
| 10 | 10 |
| 11 #elementBox { | 11 #elementBox { |
| 12 padding: 0 10px; |
| 12 width: inherit; | 13 width: inherit; |
| 13 } | 14 } |
| 14 | 15 |
| 15 paper-toggle-button { | 16 paper-toggle-button { |
| 17 /* paper-toggle-button has fixed width of 36px. Make it 32. */ |
| 18 -webkit-transform: scale(.8888); |
| 16 min-height: 20px; | 19 min-height: 20px; |
| 17 min-width: 36px; | 20 min-width: 32px; |
| 18 } | 21 } |
| 19 | 22 |
| 20 #titleContainer { | 23 #titleContainer { |
| 21 color: rgba(0, 0, 0, 0.87); | 24 color: rgba(0, 0, 0, 0.87); |
| 22 font: 13px Roboto, sans-serif; | 25 font: 13px Roboto, sans-serif; |
| 23 } | 26 } |
| 24 | 27 |
| 25 .display-value { | 28 .display-value { |
| 26 color: rgba(0, 0, 0, 0.54); | 29 color: rgba(0, 0, 0, 0.54); |
| 27 font: 13px Roboto, sans-serif; | 30 font: 13px Roboto, sans-serif; |
| 28 } | 31 } |
| OLD | NEW |