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

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

Issue 1364163002: Material PDF: Support RTL languages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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
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 color: #fff; 6 color: #fff;
7 font-size: 88.8%; 7 font-size: 88.8%;
8 } 8 }
9 9
10 #pageselector { 10 #pageselector {
11 --paper-input-container-underline: { 11 --paper-input-container-underline: {
12 visibility: hidden; 12 visibility: hidden;
13 }; 13 };
14 --paper-input-container-underline-focus: { 14 --paper-input-container-underline-focus: {
15 visibility: hidden; 15 visibility: hidden;
16 }; 16 };
17 display: inline-block; 17 display: inline-block;
18 padding: 0; 18 padding: 0;
19 width: 1ch; 19 width: 1ch;
20 } 20 }
21 21
22 input#input { 22 input#input {
23 -webkit-margin-start: -3px;
23 color: #fff; 24 color: #fff;
24 line-height: 18px; 25 line-height: 18px;
25 margin-left: -3px;
26 padding: 3px; 26 padding: 3px;
27 text-align: right; 27 text-align: end;
28 } 28 }
29 29
30 input#input:focus, 30 input#input:focus,
31 input#input:hover { 31 input#input:hover {
32 background-color: rgba(0, 0, 0, 0.5); 32 background-color: rgba(0, 0, 0, 0.5);
33 border-radius: 2px; 33 border-radius: 2px;
34 } 34 }
35 35
36 input::-webkit-outer-spin-button,
37 input::-webkit-inner-spin-button {
38 -webkit-appearance: none;
39 margin: 0;
40 }
41
42 #slash { 36 #slash {
43 padding: 0 3px; 37 padding: 0 3px;
44 } 38 }
45 39
46 #pagelength-spacer { 40 #pagelength-spacer {
47 display: inline-block; 41 display: inline-block;
48 text-align: left; 42 text-align: start;
49 } 43 }
50 44
51 #slash, 45 #slash,
52 #pagelength { 46 #pagelength {
53 font-size: 81.25%; 47 font-size: 81.25%;
54 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698