| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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: #ccc; | 6 background-color: #ccc; |
| 7 margin: 0; | 7 margin: 0; |
| 8 } | 8 } |
| 9 | 9 |
| 10 viewer-toolbar { | 10 viewer-toolbar { |
| 11 visibility: hidden; | 11 visibility: hidden; |
| 12 white-space: nowrap; | 12 white-space: nowrap; |
| 13 z-index: 3; | 13 z-index: 3; |
| 14 } | 14 } |
| 15 | 15 |
| 16 viewer-page-indicator { | 16 viewer-page-indicator { |
| 17 visibility: hidden; | 17 visibility: hidden; |
| 18 z-index: 3; | 18 z-index: 3; |
| 19 } | 19 } |
| 20 | 20 |
| 21 viewer-progress-bar { | 21 viewer-progress-bar { |
| 22 visibility: hidden; |
| 22 z-index: 3; | 23 z-index: 3; |
| 23 } | 24 } |
| 24 | 25 |
| 25 viewer-error-screen { | 26 viewer-error-screen { |
| 26 visibility: hidden; | 27 visibility: hidden; |
| 27 z-index: 2; | 28 z-index: 2; |
| 28 } | 29 } |
| 29 | 30 |
| 30 viewer-password-screen { | 31 viewer-password-screen { |
| 31 visibility: hidden; | 32 visibility: hidden; |
| 32 z-index: 2; | 33 z-index: 2; |
| 33 } | 34 } |
| 34 | 35 |
| 35 #plugin { | 36 #plugin { |
| 36 height: 100%; | 37 height: 100%; |
| 37 position: fixed; | 38 position: fixed; |
| 38 width: 100%; | 39 width: 100%; |
| 39 z-index: 1; | 40 z-index: 1; |
| 40 } | 41 } |
| 41 | 42 |
| 42 #sizer { | 43 #sizer { |
| 43 position: absolute; | 44 position: absolute; |
| 44 z-index: 0; | 45 z-index: 0; |
| 45 } | 46 } |
| OLD | NEW |