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

Side by Side Diff: chrome/browser/resources/pdf/index-material.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: 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 body { 5 body {
6 background-color: #424242; 6 background-color: rgb(82, 86, 89);
7 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial; 7 font-family: Roboto, 'Helvetica Neue', Helvetica, Arial;
8 margin: 0; 8 margin: 0;
9 } 9 }
10 10
11 viewer-pdf-toolbar { 11 viewer-pdf-toolbar {
12 position: fixed; 12 position: fixed;
13 width: 100%; 13 width: 100%;
14 /* TODO(alexandrec): the viewer-pane's paper-dialog is set to z-index: 12 14 /* TODO(alexandrec): the viewer-pane's paper-dialog is set to z-index: 12
15 * internally by the polymer element. Figure out why that is happening. */ 15 * internally by the polymer element. Figure out why that is happening. */
16 z-index: 1000; 16 z-index: 1000;
(...skipping 28 matching lines...) Expand all
45 45
46 viewer-error-screen { 46 viewer-error-screen {
47 visibility: hidden; 47 visibility: hidden;
48 z-index: 2; 48 z-index: 2;
49 } 49 }
50 50
51 viewer-password-screen { 51 viewer-password-screen {
52 visibility: hidden; 52 visibility: hidden;
53 z-index: 2; 53 z-index: 2;
54 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698