| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 color: #fff; | 6 color: #fff; |
| 7 font-size: 94.4%; | 7 font-size: 94.4%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 :host ::selection { | 10 :host ::selection { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 padding: 0; | 22 padding: 0; |
| 23 width: 1ch; | 23 width: 1ch; |
| 24 } | 24 } |
| 25 | 25 |
| 26 #input { | 26 #input { |
| 27 -webkit-margin-start: -3px; | 27 -webkit-margin-start: -3px; |
| 28 color: #fff; | 28 color: #fff; |
| 29 line-height: 18px; | 29 line-height: 18px; |
| 30 padding: 3px; | 30 padding: 3px; |
| 31 text-align: end; | 31 text-align: end; |
| 32 vertical-align: baseline; |
| 32 } | 33 } |
| 33 | 34 |
| 34 #input:focus, | 35 #input:focus, |
| 35 #input:hover { | 36 #input:hover { |
| 36 background-color: rgba(0, 0, 0, 0.5); | 37 background-color: rgba(0, 0, 0, 0.5); |
| 37 border-radius: 2px; | 38 border-radius: 2px; |
| 38 } | 39 } |
| 39 | 40 |
| 40 #slash { | 41 #slash { |
| 41 padding: 0 3px; | 42 padding: 0 3px; |
| 42 } | 43 } |
| 43 | 44 |
| 44 #pagelength-spacer { | 45 #pagelength-spacer { |
| 45 display: inline-block; | 46 display: inline-block; |
| 46 text-align: start; | 47 text-align: start; |
| 47 } | 48 } |
| 48 | 49 |
| 49 #slash, | 50 #slash, |
| 50 #pagelength { | 51 #pagelength { |
| 51 font-size: 76.5%; | 52 font-size: 76.5%; |
| 52 } | 53 } |
| OLD | NEW |