Chromium Code Reviews| Index: chrome/browser/resources/pdf/elements/page-selector/page-selector.css |
| diff --git a/chrome/browser/resources/pdf/elements/page-selector/page-selector.css b/chrome/browser/resources/pdf/elements/page-selector/page-selector.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4cb773463b9b293ad89ec1b0a58abde7ebb12cdc |
| --- /dev/null |
| +++ b/chrome/browser/resources/pdf/elements/page-selector/page-selector.css |
| @@ -0,0 +1,37 @@ |
| +/* Copyright 2015 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. */ |
| + |
| +:host { |
| + visibility: hidden; |
| +} |
| + |
| +#pageselector { |
| + display: inline-block; |
| + width: 0.6em; |
| +} |
| + |
| +paper-input /deep/ ::-webkit-input-placeholder { |
| + color: rgb(241, 241, 241); |
| +} |
| + |
| +paper-input /deep/ .focused-underline { |
| + background-color: rgb(241, 241, 241); |
| +} |
| + |
| +paper-input /deep/ .unfocused-underline { |
| + background-color: transparent; |
| +} |
|
raymes
2015/01/22 22:31:55
nit: blank line after this
Alexandre Carlton
2015/01/22 22:50:29
Done.
|
| +paper-input:hover /deep/ .unfocused-underline { |
| + background-color: rgb(241, 241, 241); |
| +} |
| + |
| +paper-input::shadow input[is='core-input'] { |
| + margin: 0; |
| + text-align: right; |
| +} |
| + |
| +#pagelength { |
| + color: rgb(144, 202, 251); |
| + font-size: 0.7em; |
| +} |