| 1 | /* ***** BEGIN LICENSE BLOCK ***** |
| 2 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 3 | * |
| 4 | * The contents of this file are subject to the Mozilla Public License Version |
| 5 | * 1.1 (the "License"); you may not use this file except in compliance with |
| 6 | * the License. You may obtain a copy of the License at |
| 7 | * http://www.mozilla.org/MPL/ |
| 8 | * |
| 9 | * Software distributed under the License is distributed on an "AS IS" basis, |
| 10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| 11 | * for the specific language governing rights and limitations under the |
| 12 | * License. |
| 13 | * |
| 14 | * The Original Code is DevTools code |
| 15 | * |
| 16 | * The Initial Developer of the Original Code is |
| 17 | * Mozilla Corporation |
| 18 | * Portions created by the Initial Developer are Copyright (C) 2010 |
| 19 | * the Initial Developer. All Rights Reserved. |
| 20 | * |
| 21 | * Contributor(s): |
| 22 | * David Dahl <ddahl@mozilla.com> |
| 23 | |
| 24 | * Alternatively, the contents of this file may be used under the terms of |
| 25 | * either the GNU General Public License Version 2 or later (the "GPL"), or |
| 26 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
| 27 | * in which case the provisions of the GPL or the LGPL are applicable instead |
| 28 | * of those above. If you wish to allow use of your version of this file only |
| 29 | * under the terms of either the GPL or the LGPL, and not to allow others to |
| 30 | * use your version of this file under the terms of the MPL, indicate your |
| 31 | * decision by deleting the provisions above and replace them with the notice |
| 32 | * and other provisions required by the GPL or the LGPL. If you do not delete |
| 33 | * the provisions above, a recipient may use your version of this file under |
| 34 | * the terms of any one of the MPL, the GPL or the LGPL. |
| 35 | * |
| 36 | * ***** END LICENSE BLOCK ***** */ |
| 37 | |
| 38 | .hud-box { |
| 39 | border-bottom: 1px solid #CCD0DD; |
| 40 | } |
| 41 | |
| 42 | .hud-box.animated { |
| 43 | -moz-transition: height 100ms; |
| 44 | } |
| 45 | |
| 46 | .hud-outer-wrapper { |
| 47 | width: 100%; |
| 48 | height: 100%; |
| 49 | } |
| 50 | |
| 51 | .hud-console-wrapper { |
| 52 | width: 100%; |
| 53 | overflow: auto; |
| 54 | } |
| 55 | |
| 56 | /* General output styles */ |
| 57 | |
| 58 | .webconsole-timestamp { |
| 59 | color: #808080; |
| 60 | margin-top: 0; |
| 61 | margin-bottom: 0; |
| 62 | } |
| 63 | |
| 64 | .hud-msg-node { |
| 65 | list-style-image: url("chrome://global/skin/icons/webconsole.png"); |
| 66 | -moz-image-region: rect(0, 1px, 0, 0); |
| 67 | } |
| 68 | |
| 69 | .webconsole-msg-icon { |
| 70 | margin: 3px 4px; |
| 71 | width: 8px; |
| 72 | height: 8px; |
| 73 | } |
| 74 | |
| 75 | .hud-output-node div { |
| 76 | -moz-user-select: text; |
| 77 | white-space: pre-wrap; |
| 78 | -moz-user-focus: normal; |
| 79 | } |
| 80 | |
| 81 | .hud-clickable { |
| 82 | cursor: pointer; |
| 83 | text-decoration: underline; |
| 84 | } |
| 85 | |
| 86 | .webconsole-msg-body { |
| 87 | margin-top: 0; |
| 88 | margin-bottom: 3px; |
| 89 | -moz-margin-start: 3px; |
| 90 | -moz-margin-end: 6px; |
| 91 | white-space: pre-wrap; |
| 92 | } |
| 93 | |
| 94 | .webconsole-msg-body-piece { |
| 95 | margin: 0; |
| 96 | } |
| 97 | |
| 98 | .webconsole-msg-url { |
| 99 | margin: 0 6px; |
| 100 | } |
| 101 | |
| 102 | /* Repeated messages */ |
| 103 | .webconsole-msg-repeat { |
| 104 | margin: 2px 0; |
| 105 | padding-left: 4px; |
| 106 | padding-right: 4px; |
| 107 | width: 1em; |
| 108 | color: #FFFFFF; |
| 109 | background-color: #FF0000; |
| 110 | border-radius: 40px; |
| 111 | /* font: message-box; */ |
| 112 | font-size: 10px; |
| 113 | font-weight: 600; |
| 114 | } |
| 115 | |
| 116 | /* TODO move this and other functional rules to content - bug 635359 */ |
| 117 | .webconsole-msg-repeat[value="1"] { |
| 118 | display: none; |
| 119 | } |
| 120 | |
| 121 | .webconsole-location { |
| 122 | margin-top: 0; |
| 123 | margin-bottom: 0; |
| 124 | -moz-margin-start: 0; |
| 125 | -moz-margin-end: 6px; |
| 126 | width: 10em; |
| 127 | text-align: end; |
| 128 | } |
| 129 | |
| 130 | .hud-msg-node[selected="true"] > .webconsole-timestamp, |
| 131 | .hud-msg-node[selected="true"] > .webconsole-location { |
| 132 | color: inherit; |
| 133 | } |
| 134 | |
| 135 | .hud-output-node, |
| 136 | .jsterm-input-node, |
| 137 | .jsterm-complete-node { |
| 138 | font: 12px Consolas, Lucida Console, monospace; |
| 139 | } |
| 140 | |
| 141 | .hud-output-node { |
| 142 | -moz-appearance: none; |
| 143 | border-bottom: 1px solid #666699; |
| 144 | border-top: 1px solid #666699; |
| 145 | margin: 0; |
| 146 | } |
| 147 | |
| 148 | .hud-filtered-by-type, |
| 149 | .hud-filtered-by-string { |
| 150 | display: none; |
| 151 | } |
| 152 | |
| 153 | .webconsole-clear-console-button > .toolbarbutton-icon { |
| 154 | display: none; |
| 155 | } |
| 156 | |
| 157 | .webconsole-filter-button > .toolbarbutton-menubutton-button { |
| 158 | -moz-box-orient: horizontal; |
| 159 | list-style-image: url("chrome://global/skin/icons/webconsole.png"); |
| 160 | } |
| 161 | |
| 162 | /* Network styles */ |
| 163 | .webconsole-filter-button[category="net"] { |
| 164 | -moz-image-region: rect(0, 8px, 8px, 0); |
| 165 | } |
| 166 | |
| 167 | .webconsole-msg-network > .webconsole-msg-icon-container { |
| 168 | -moz-border-start: solid #000 6px; |
| 169 | } |
| 170 | |
| 171 | .webconsole-msg-network.webconsole-msg-error { |
| 172 | -moz-image-region: rect(0, 16px, 8px, 8px); |
| 173 | } |
| 174 | |
| 175 | /* CSS styles */ |
| 176 | .webconsole-filter-button[category="css"] { |
| 177 | -moz-image-region: rect(8px, 8px, 16px, 0); |
| 178 | } |
| 179 | |
| 180 | .webconsole-msg-cssparser > .webconsole-msg-icon-container { |
| 181 | -moz-border-start: solid #00b6f0 6px; |
| 182 | } |
| 183 | |
| 184 | .webconsole-msg-cssparser.webconsole-msg-error { |
| 185 | -moz-image-region: rect(8px, 16px, 16px, 8px); |
| 186 | } |
| 187 | |
| 188 | .webconsole-msg-cssparser.webconsole-msg-warn { |
| 189 | -moz-image-region: rect(8px, 24px, 16px, 16px); |
| 190 | } |
| 191 | |
| 192 | /* JS styles */ |
| 193 | .webconsole-filter-button[category="js"] { |
| 194 | -moz-image-region: rect(16px, 8px, 24px, 0); |
| 195 | } |
| 196 | |
| 197 | .webconsole-msg-exception > .webconsole-msg-icon-container { |
| 198 | -moz-border-start: solid #fb9500 6px; |
| 199 | } |
| 200 | |
| 201 | .webconsole-msg-exception.webconsole-msg-error { |
| 202 | -moz-image-region: rect(16px, 16px, 24px, 8px); |
| 203 | } |
| 204 | |
| 205 | .webconsole-msg-exception.webconsole-msg-warn { |
| 206 | -moz-image-region: rect(16px, 24px, 24px, 16px); |
| 207 | } |
| 208 | |
| 209 | /* Web Developer styles */ |
| 210 | .webconsole-filter-button[category="webdev"] { |
| 211 | -moz-image-region: rect(24px, 8px, 32px, 0); |
| 212 | } |
| 213 | |
| 214 | .webconsole-msg-console > .webconsole-msg-icon-container { |
| 215 | -moz-border-start: solid #cbcbcb 6px; |
| 216 | } |
| 217 | |
| 218 | .webconsole-msg-console.webconsole-msg-error, |
| 219 | .webconsole-msg-output.webconsole-msg-error { |
| 220 | -moz-image-region: rect(24px, 16px, 32px, 8px); |
| 221 | } |
| 222 | |
| 223 | .webconsole-msg-console.webconsole-msg-warn { |
| 224 | -moz-image-region: rect(24px, 24px, 32px, 16px); |
| 225 | } |
| 226 | |
| 227 | .webconsole-msg-console.webconsole-msg-info { |
| 228 | -moz-image-region: rect(24px, 32px, 32px, 24px); |
| 229 | } |
| 230 | |
| 231 | /* Input and output styles */ |
| 232 | .webconsole-msg-input > .webconsole-msg-icon-container, |
| 233 | .webconsole-msg-output > .webconsole-msg-icon-container { |
| 234 | border-left: solid #808080 6px; |
| 235 | } |
| 236 | |
| 237 | .webconsole-msg-input { |
| 238 | -moz-image-region: rect(24px, 40px, 32px, 32px); |
| 239 | } |
| 240 | |
| 241 | .webconsole-msg-output { |
| 242 | -moz-image-region: rect(24px, 48px, 32px, 40px); |
| 243 | } |
| 244 | |
| 245 | .webconsole-close-button { |
| 246 | border: none; |
| 247 | padding: 3px; |
| 248 | list-style-image: url("chrome://global/skin/icons/close.png"); |
| 249 | -moz-image-region: rect(0, 16px, 16px, 0); |
| 250 | -moz-appearance: none; |
| 251 | } |
| 252 | |
| 253 | .webconsole-close-button:hover { |
| 254 | -moz-image-region: rect(0, 32px, 16px, 16px); |
| 255 | } |
| 256 | |
| 257 | .webconsole-close-button:hover:active { |
| 258 | -moz-image-region: rect(0, 48px, 16px, 32px); |
| 259 | } |
| 260 | |
| 261 | /* JSTerm Styles */ |
| 262 | |
| 263 | .jsterm-wrapper-node { |
| 264 | font-family: monospace; |
| 265 | font-size: 1em; |
| 266 | background-color: #000; |
| 267 | border: 1px solid #333; |
| 268 | padding: 0.1em; |
| 269 | width: 100%; |
| 270 | height: 400px; |
| 271 | } |
| 272 | |
| 273 | .jsterm-output-node { |
| 274 | width: 100%; |
| 275 | height: 400px; |
| 276 | color: white; |
| 277 | background-color: black; |
| 278 | overflow: auto; |
| 279 | overflow-x: auto; |
| 280 | position: absolute; |
| 281 | -moz-box-direction: reverse; |
| 282 | } |
| 283 | |
| 284 | .jsterm-scroll-to-node { |
| 285 | height: 1px; width: 1px; position: relative; top: 92%; display: block; |
| 286 | } |
| 287 | |
| 288 | .jsterm-input-node, |
| 289 | .jsterm-complete-node { |
| 290 | border: none; |
| 291 | padding: 0 0 0 16px; |
| 292 | } |
| 293 | |
| 294 | .jsterm-input-node { |
| 295 | background: url("chrome://global/skin/icons/commandline.png") 4px 3px no-repeat; |
| 296 | } |
| 297 | |
| 298 | :-moz-any(.jsterm-input-node, |
| 299 | .jsterm-complete-node) > .textbox-input-box > .textbox-textarea { |
| 300 | overflow-x: hidden; |
| 301 | } |
| 302 | |
| 303 | .jsterm-complete-node > .textbox-input-box > .textbox-textarea { |
| 304 | color: #808080; |
| 305 | } |
| 306 | |
| 307 | .jsterm-output-line { |
| 308 | font-size: 1em; |
| 309 | } |
| 310 | |
| 311 | .hud-console-filter-toolbar { |
| 312 | padding: 1px 0px; |
| 313 | -moz-box-align: center; |
| 314 | } |
| 315 | |
| 316 | .web-console-panel { |
| 317 | -moz-appearance: none; |
| 318 | background-color: white; |
| 319 | } |
| 320 | |
| 321 | .web-console-panel > .hud-box { |
| 322 | height: 100%; |
| 323 | width: 100%; |
| 324 | background-color: white; |
| 325 | } |