Chromium Code Reviews| 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 font-family: RobotoDraft, Roboto, 'Helvetica Neue', Helvetica, Arial; | |
| 7 margin: 0; | 8 margin: 0; |
| 8 } | 9 } |
| 9 | 10 |
| 11 core-toolbar { | |
| 12 background-color: rgb(33, 150, 243); | |
| 13 color: rgb(241, 241, 241); | |
| 14 font-size: 2em; | |
| 15 } | |
| 16 | |
| 17 #toolbar-shadow { | |
| 18 position: fixed; | |
| 19 width: 100%; | |
| 20 z-index: 4; | |
| 21 } | |
| 22 | |
| 23 #progress-bar { | |
| 24 visibility: hidden; | |
| 25 z-index: 3; | |
| 26 } | |
| 27 | |
| 28 paper-progress::shadow #activeProgress { | |
| 29 background-color: rgb(100, 181, 246); | |
| 30 } | |
|
raymes
2015/01/09 04:15:09
Since this file is quite small and I think the mat
Alexandre Carlton
2015/01/12 06:33:57
Done.
| |
| 31 | |
| 10 viewer-toolbar { | 32 viewer-toolbar { |
| 11 visibility: hidden; | 33 visibility: hidden; |
| 12 white-space: nowrap; | 34 white-space: nowrap; |
| 13 z-index: 3; | 35 z-index: 3; |
| 14 } | 36 } |
| 15 | 37 |
| 16 viewer-page-indicator { | 38 viewer-page-indicator { |
| 17 visibility: hidden; | 39 visibility: hidden; |
| 18 z-index: 3; | 40 z-index: 3; |
| 19 } | 41 } |
| 20 | |
| 21 viewer-progress-bar { | |
| 22 visibility: hidden; | |
| 23 z-index: 3; | |
| 24 } | |
|
raymes
2015/01/09 04:15:10
Is this meant to be deleted?
| |
| 25 | 42 |
| 26 viewer-error-screen { | 43 viewer-error-screen { |
| 27 visibility: hidden; | 44 visibility: hidden; |
| 28 z-index: 2; | 45 z-index: 2; |
| 29 } | 46 } |
| 30 | 47 |
| 31 viewer-password-screen { | 48 viewer-password-screen { |
| 32 visibility: hidden; | 49 visibility: hidden; |
| 33 z-index: 2; | 50 z-index: 2; |
| 34 } | 51 } |
| 35 | 52 |
| 36 #plugin { | 53 #plugin { |
| 37 height: 100%; | 54 height: 100%; |
| 38 position: fixed; | 55 position: fixed; |
| 39 width: 100%; | 56 width: 100%; |
| 40 z-index: 1; | 57 z-index: 1; |
| 41 } | 58 } |
| 42 | 59 |
| 43 #sizer { | 60 #sizer { |
| 44 position: absolute; | 61 position: absolute; |
| 45 z-index: 0; | 62 z-index: 0; |
| 46 } | 63 } |
| OLD | NEW |