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

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

Issue 1162863002: Material PDF: Fix inconsistent behaviour in page selector, update styling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix rebase mistake Created 5 years, 6 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 bottom: 0; 6 bottom: 0;
7 padding: 24px; 7 padding: 24px;
8 position: fixed; 8 position: fixed;
9 right: 0; 9 right: 0;
10 z-index: 3; 10 z-index: 3;
11 } 11 }
12 12
13 #zoom-buttons { 13 #zoom-buttons {
14 display: inline-block; 14 display: inline-block;
15 } 15 }
16 16
17 #main-zoom {
18 background-color: rgb(27, 168, 243);
19 display: block;
20 margin: auto;
21 margin-top: 2em;
22 overflow: visible;
23 }
24
25 #fit-to-width-button { 17 #fit-to-width-button {
26 display: block; 18 display: block;
27 margin: auto; 19 margin: auto;
28 margin-top: 2em; 20 margin-top: 1em;
29 overflow: visible; 21 overflow: visible;
30 } 22 }
31 23
32 #fit-to-page-button { 24 #fit-to-page-button {
33 display: block; 25 display: block;
34 margin: auto; 26 margin: auto;
35 overflow: visible; 27 overflow: visible;
36 } 28 }
37 29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698