OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 /* Elements */ |
| 7 body { |
| 8 margin: 0; |
| 9 overflow: auto; |
| 10 padding: 0; |
| 11 -webkit-user-select: none; |
| 12 } |
| 13 |
| 14 /* Ids */ |
| 15 #debug-log { |
| 16 background-color: white; |
| 17 bottom: 0; |
| 18 border-top: 1px solid black; |
| 19 display: none; |
| 20 font-family: monospace; |
| 21 font-weight: bold; |
| 22 font-size: small; |
| 23 height: 150px; |
| 24 margin: 0; |
| 25 opacity: 0.85; |
| 26 overflow: auto; |
| 27 padding: 0; |
| 28 position: fixed; |
| 29 width: 100%; |
| 30 z-index: 100; |
| 31 -webkit-user-select: text; |
| 32 } |
| 33 |
| 34 #plugin-scroll-panel { |
| 35 overflow: auto; |
| 36 width: 100%; |
| 37 -webkit-user-select: none; |
| 38 } |
| 39 |
| 40 #session-buttons { |
| 41 float: right; |
| 42 } |
| 43 |
| 44 #session-controls { |
| 45 background-color: white; |
| 46 border-bottom: solid 1px black; |
| 47 height: 1.5em; |
| 48 left: 0; |
| 49 opacity: 0.85; |
| 50 position: fixed; |
| 51 top: 0; |
| 52 width: 100%; |
| 53 z-index: 100; |
| 54 } |
| 55 |
| 56 #session-controls-padding { |
| 57 /* |
| 58 Maintains space for session-controls so that the display initially appears |
| 59 lower than the controls, since session-controls is position:fixed. |
| 60 */ |
| 61 height: 1.5em; |
| 62 } |
| 63 |
| 64 #status-msg { |
| 65 /* |
| 66 clear: both; forces the session-controls div to size appropriately for |
| 67 session-buttons. |
| 68 */ |
| 69 clear: both; |
| 70 font-family: monospace; |
| 71 font-size: small; |
| 72 margin: 5px; |
| 73 } |
OLD | NEW |