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 #pageselector { | 5 #pageselector { |
| 6 --paper-input-container-underline: { |
| 7 visibility: hidden; |
| 8 }; |
| 9 --paper-input-container-underline-focus: { |
| 10 visibility: hidden; |
| 11 }; |
6 display: inline-block; | 12 display: inline-block; |
| 13 padding: 0; |
7 width: 0.6em; | 14 width: 0.6em; |
8 } | 15 } |
9 | 16 |
10 paper-input-container /deep/ .focused-line { | |
11 visibility: hidden; | |
12 } | |
13 | |
14 paper-input-container /deep/ .unfocused-line { | |
15 visibility: hidden; | |
16 } | |
17 | |
18 paper-input-container { | |
19 padding: 0; | |
20 } | |
21 | |
22 input#input { | 17 input#input { |
23 color: #fff; | 18 color: #fff; |
24 font-size: 1em; | 19 font-size: 88.8%; |
25 line-height: 20px; | 20 line-height: 20px; |
26 padding: 3px; | 21 padding: 3px; |
27 text-align: right; | 22 text-align: right; |
28 } | 23 } |
29 | 24 |
30 input#input:focus, | 25 input#input:focus, |
31 input#input:hover { | 26 input#input:hover { |
32 background-color: rgba(0, 0, 0, 0.5); | 27 background-color: rgba(0, 0, 0, 0.5); |
33 border-radius: 2px; | 28 border-radius: 2px; |
34 } | 29 } |
35 | 30 |
36 #pagelength { | 31 #pagelength { |
37 color: #fff; | 32 color: #fff; |
38 font-size: 0.7em; | 33 font-size: 72.2%; |
39 font-weight: 400; | |
40 padding-left: 3px; | 34 padding-left: 3px; |
41 } | 35 } |
| 36 |
| 37 #pagelength-inner { |
| 38 display: inline-block; |
| 39 padding-left: 3px; |
| 40 text-align: left; |
| 41 } |
OLD | NEW |