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

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

Issue 895193002: Fix height of the viewer-pane in Material Design PDF Viewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | no next file » | 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 /deep/ paper-dialog { 5 :host /deep/ paper-dialog {
6 background-color: rgb(66, 66, 66); 6 background-color: rgb(66, 66, 66);
7 color: rgb(250, 250, 250); 7 color: rgb(250, 250, 250);
8 /* Since the pane slides in from the right, we want the scrollbar to be on 8 /* Since the pane slides in from the right, we want the scrollbar to be on
9 * the left. Setting direction to rtl achieves this. 9 * the left. Setting direction to rtl achieves this.
10 */ 10 */
11 direction: rtl; 11 direction: rtl;
12 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial; 12 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial;
13 height: calc(100% - 64px); 13 height: calc(100% - 56px);
14 margin: 0; 14 margin: 0;
15 right: 0; 15 right: 0;
16 top: 64px; 16 top: 56px;
17 width: 22em; 17 width: 22em;
18 } 18 }
19 19
20 #reset-content { 20 #reset-content {
21 direction: ltr; 21 direction: ltr;
22 } 22 }
23 23
24 :host /deep/ #scroller > h1 { 24 :host /deep/ #scroller > h1 {
25 direction: ltr; 25 direction: ltr;
26 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial; 26 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial;
27 } 27 }
28 28
29 hr { 29 hr {
30 background: rgb(66, 66, 66); 30 background: rgb(66, 66, 66);
31 border: 0; 31 border: 0;
32 border-bottom: 1px dashed rgb(250, 250, 250); 32 border-bottom: 1px dashed rgb(250, 250, 250);
33 } 33 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698