| 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: rgb(82, 86, 89); | 6 background-color: rgb(82, 86, 89); |
| 7 font-family: 'Roboto', 'Noto', sans-serif; | 7 font-family: 'Roboto', 'Noto', sans-serif; |
| 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 z-index: 3; | 14 z-index: 3; |
| 15 } | 15 } |
| 16 | 16 |
| 17 #plugin { | 17 #plugin { |
| 18 height: 100%; | 18 height: 100%; |
| 19 position: fixed; | 19 position: fixed; |
| 20 width: 100%; | 20 width: 100%; |
| 21 z-index: 1; | 21 z-index: 1; |
| 22 } | 22 } |
| 23 | 23 |
| 24 #sizer { | 24 #sizer { |
| 25 position: absolute; | 25 position: absolute; |
| 26 z-index: 0; | 26 z-index: 0; |
| 27 } | 27 } |
| 28 | |
| 29 bookmarks-pane { | |
| 30 z-index: 2; | |
| 31 } | |
| 32 | |
| 33 viewer-toolbar { | |
| 34 visibility: hidden; | |
| 35 white-space: nowrap; | |
| 36 z-index: 3; | |
| 37 } | |
| 38 | |
| 39 viewer-page-indicator { | |
| 40 visibility: hidden; | |
| 41 z-index: 3; | |
| 42 } | |
| OLD | NEW |