| OLD | NEW |
| (Empty) | |
| 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 |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 :host { |
| 6 visibility: hidden; |
| 7 } |
| 8 |
| 9 #pageselector { |
| 10 display: inline-block; |
| 11 width: 0.6em; |
| 12 } |
| 13 |
| 14 paper-input /deep/ ::-webkit-input-placeholder { |
| 15 color: rgb(241, 241, 241); |
| 16 } |
| 17 |
| 18 paper-input /deep/ .focused-underline { |
| 19 background-color: rgb(241, 241, 241); |
| 20 } |
| 21 |
| 22 paper-input /deep/ .unfocused-underline { |
| 23 background-color: transparent; |
| 24 } |
| 25 paper-input:hover /deep/ .unfocused-underline { |
| 26 background-color: rgb(241, 241, 241); |
| 27 } |
| 28 |
| 29 paper-input::shadow input[is='core-input'] { |
| 30 margin: 0; |
| 31 text-align: right; |
| 32 } |
| 33 |
| 34 #pagelength { |
| 35 color: rgb(144, 202, 251); |
| 36 font-size: 0.7em; |
| 37 } |
| OLD | NEW |