Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-page-selector/viewer-page-selector.css

Issue 888343003: Ctrl-G now selects page number in Material Design PDF Viewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix underline margin on input Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/pdf/elements/viewer-page-selector/viewer-page-selector.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 visibility: hidden; 6 visibility: hidden;
7 } 7 }
8 8
9 #pageselector { 9 #pageselector {
10 display: inline-block; 10 display: inline-block;
11 width: 0.6em; 11 width: 0.6em;
12 } 12 }
13 13
14 paper-input /deep/ ::-webkit-input-placeholder { 14 paper-input-decorator /deep/ ::-webkit-input-placeholder {
15 color: rgb(241, 241, 241); 15 color: rgb(241, 241, 241);
16 } 16 }
17 17
18 paper-input /deep/ .focused-underline { 18 paper-input-decorator /deep/ .focused-underline {
19 background-color: rgb(241, 241, 241); 19 background-color: rgb(241, 241, 241);
20 } 20 }
21 21
22 paper-input /deep/ .unfocused-underline { 22 paper-input-decorator /deep/ .unfocused-underline {
23 background-color: transparent; 23 background-color: transparent;
24 } 24 }
25 25
26 paper-input:hover /deep/ .unfocused-underline { 26 paper-input-decorator:hover /deep/ .unfocused-underline {
27 background-color: rgb(241, 241, 241); 27 background-color: rgb(241, 241, 241);
28 } 28 }
29 29
30 paper-input::shadow input[is='core-input'] { 30 #input {
31 margin: 0; 31 margin: 0;
32 text-align: right; 32 text-align: right;
33 } 33 }
34 34
35 #pagelength { 35 #pagelength {
36 color: rgb(144, 202, 251); 36 color: rgb(144, 202, 251);
37 font-size: 0.7em; 37 font-size: 0.7em;
38 } 38 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/pdf/elements/viewer-page-selector/viewer-page-selector.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698