| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |