| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 | 5 |
| 6 /* Elements */ | 6 /* Elements */ |
| 7 body { | 7 body { |
| 8 margin: 0; | 8 margin: 0; |
| 9 overflow: auto; | 9 overflow: auto; |
| 10 padding: 0; | 10 padding: 0; |
| 11 -webkit-user-select: none; | 11 -webkit-user-select: none; |
| 12 } | 12 } |
| 13 | 13 |
| 14 /* Ids */ | 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 { | 15 #plugin-scroll-panel { |
| 35 overflow: auto; | 16 overflow: auto; |
| 36 width: 100%; | 17 width: 100%; |
| 37 -webkit-user-select: none; | 18 -webkit-user-select: none; |
| 38 } | 19 } |
| 39 | 20 |
| 40 #session-buttons { | 21 #session-buttons { |
| 41 float: right; | 22 float: right; |
| 42 } | 23 } |
| 43 | 24 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 64 #status-msg { | 45 #status-msg { |
| 65 /* | 46 /* |
| 66 clear: both; forces the session-controls div to size appropriately for | 47 clear: both; forces the session-controls div to size appropriately for |
| 67 session-buttons. | 48 session-buttons. |
| 68 */ | 49 */ |
| 69 clear: both; | 50 clear: both; |
| 70 font-family: monospace; | 51 font-family: monospace; |
| 71 font-size: small; | 52 font-size: small; |
| 72 margin: 5px; | 53 margin: 5px; |
| 73 } | 54 } |
| OLD | NEW |