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

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

Issue 861673002: Implement Page Selection in PDF Toolbar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pdf-toolbar
Patch Set: Shift CSS into polymer element Created 5 years, 11 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698