| 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: 88.8%; | 7 font-size: 88.8%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #pageselector { | 10 #pageselector { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 padding: 3px; | 26 padding: 3px; |
| 27 text-align: right; | 27 text-align: right; |
| 28 } | 28 } |
| 29 | 29 |
| 30 input#input:focus, | 30 input#input:focus, |
| 31 input#input:hover { | 31 input#input:hover { |
| 32 background-color: rgba(0, 0, 0, 0.5); | 32 background-color: rgba(0, 0, 0, 0.5); |
| 33 border-radius: 2px; | 33 border-radius: 2px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 input::-webkit-outer-spin-button, |
| 37 input::-webkit-inner-spin-button { |
| 38 -webkit-appearance: none; |
| 39 margin: 0; |
| 40 } |
| 41 |
| 36 #slash { | 42 #slash { |
| 37 padding: 0 3px; | 43 padding: 0 3px; |
| 38 } | 44 } |
| 39 | 45 |
| 40 #pagelength-spacer { | 46 #pagelength-spacer { |
| 41 display: inline-block; | 47 display: inline-block; |
| 42 text-align: left; | 48 text-align: left; |
| 43 } | 49 } |
| 44 | 50 |
| 45 #slash, | 51 #slash, |
| 46 #pagelength { | 52 #pagelength { |
| 47 font-size: 81.25%; | 53 font-size: 81.25%; |
| 48 } | 54 } |
| OLD | NEW |