| 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 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 height: 100%; | 23 height: 100%; |
| 24 position: fixed; | 24 position: fixed; |
| 25 width: 100%; | 25 width: 100%; |
| 26 z-index: 1; | 26 z-index: 1; |
| 27 } | 27 } |
| 28 | 28 |
| 29 #sizer { | 29 #sizer { |
| 30 position: absolute; | 30 position: absolute; |
| 31 z-index: 0; | 31 z-index: 0; |
| 32 } | 32 } |
| 33 |
| 34 @media(max-height: 250px) { |
| 35 viewer-pdf-toolbar { |
| 36 display: none; |
| 37 } |
| 38 } |
| 39 |
| 40 @media(max-height: 200px) { |
| 41 viewer-zoom-toolbar { |
| 42 display: none; |
| 43 } |
| 44 } |
| 45 |
| 46 @media(max-width: 300px) { |
| 47 viewer-zoom-toolbar { |
| 48 display: none; |
| 49 } |
| 50 } |
| OLD | NEW |