michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: michael@0: .console-box { michael@0: -moz-binding: url("chrome://global/content/consoleBindings.xml#console-box"); michael@0: overflow: auto; michael@0: } michael@0: michael@0: .console-rows { michael@0: -moz-user-focus: normal; michael@0: } michael@0: michael@0: .console-row[type="error"], michael@0: .console-row[type="warning"] { michael@0: -moz-binding: url("chrome://global/content/consoleBindings.xml#error"); michael@0: } michael@0: michael@0: .console-row[type="message"] { michael@0: -moz-binding: url("chrome://global/content/consoleBindings.xml#message"); michael@0: } michael@0: michael@0: .console-msg-text, michael@0: .console-error-msg { michael@0: white-space: pre-wrap; michael@0: } michael@0: michael@0: .console-error-source { michael@0: -moz-binding: url("chrome://global/content/consoleBindings.xml#console-error-source"); michael@0: } michael@0: michael@0: .console-dots { michael@0: width: 1px; michael@0: } michael@0: michael@0: /* :::::::::: hiding and showing of rows for each mode :::::::::: */ michael@0: michael@0: .console-box[mode="Warnings"] > .console-box-internal > .console-rows michael@0: > .console-row[type="error"], michael@0: .console-box[mode="Messages"] > .console-box-internal > .console-rows michael@0: > .console-row[type="error"] michael@0: { michael@0: display: none; michael@0: } michael@0: michael@0: .console-box[mode="Errors"] > .console-box-internal > .console-rows michael@0: > .console-row[type="warning"], michael@0: .console-box[mode="Messages"] > .console-box-internal > .console-rows michael@0: > .console-row[type="warning"] michael@0: { michael@0: display: none; michael@0: } michael@0: michael@0: .console-box[mode="Errors"] > .console-box-internal > .console-rows michael@0: > .console-row[type="message"], michael@0: .console-box[mode="Warnings"] > .console-box-internal > .console-rows michael@0: > .console-row[type="message"] michael@0: { michael@0: display: none; michael@0: } michael@0: michael@0: .filtered-by-string { michael@0: display: none; michael@0: } michael@0: michael@0: /* If line number is 0, hide the line number section */ michael@0: .lineNumberRow[line="0"] { michael@0: display: none; michael@0: } michael@0: michael@0: #TextboxEval { michael@0: direction: ltr; michael@0: }