mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 05:38:39 +00:00
166 lines
3.2 KiB
CSS
166 lines
3.2 KiB
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* ===== console.css ====================================================
|
|
== Styles used by the Error Console window.
|
|
======================================================================= */
|
|
|
|
/* View buttons */
|
|
@import "chrome://global/skin/viewbuttons.css";
|
|
|
|
%include ../shared.inc
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
.console-box {
|
|
background-color: -moz-Field;
|
|
color: -moz-FieldText;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* ::::: console rows ::::: */
|
|
|
|
.console-row {
|
|
border-bottom: 1px solid #A3A3A3;
|
|
padding: 4px;
|
|
}
|
|
|
|
.console-row-file {
|
|
color: #505050;
|
|
}
|
|
|
|
.console-row-msg > label:first-child {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.console-row-msg > label, .comsole-row-msg > description, .console-error-msg, .console-row-file, .console-row-code {
|
|
margin: 2px;
|
|
}
|
|
|
|
.console-row-file > label {
|
|
margin: 0;
|
|
}
|
|
|
|
.console-msg-text {
|
|
white-space: pre-wrap !important;
|
|
}
|
|
.console-icon {
|
|
list-style-image: inherit;
|
|
padding-right: 6px;
|
|
padding-left: 6px;
|
|
}
|
|
|
|
/* ..... error rows ..... */
|
|
|
|
.console-row-code {
|
|
color: #0000BB;
|
|
font-size: larger;
|
|
}
|
|
|
|
.console-dots,
|
|
.console-caret {
|
|
height: 9px;
|
|
}
|
|
|
|
.console-dots {
|
|
background: url("chrome://global/skin/console/console-error-dash.gif") repeat-x top;
|
|
}
|
|
|
|
.console-caret {
|
|
width: 7px;
|
|
background: url("chrome://global/skin/console/console-error-caret.gif") no-repeat top;
|
|
}
|
|
|
|
/* ..... message rows ..... */
|
|
|
|
.console-row[type="message"] {
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* ..... selected state ..... */
|
|
|
|
.console-row[selected="true"] {
|
|
background-color: #3D80DF !important;
|
|
color: #FFF;
|
|
}
|
|
|
|
.console-row-code[selected="true"],
|
|
.console-row-content[selected="true"] > .console-row-file,
|
|
.console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link {
|
|
color: #FFF !important;
|
|
}
|
|
|
|
/* ::::: row colors ::::: */
|
|
|
|
.console-row[type="error"],
|
|
.console-row[type="exception"] {
|
|
background-color: #FFD0DC;
|
|
}
|
|
|
|
.console-row[type="warning"] {
|
|
background-color: #F8F3CC;
|
|
}
|
|
|
|
.console-row[type="message"] {
|
|
background-color: #D3EDFF;
|
|
}
|
|
|
|
/* ::::: toolbars ::::: */
|
|
|
|
#ToolbarEval {
|
|
appearance: none;
|
|
background: @scopeBarBackground@;
|
|
border-bottom: @scopeBarSeparatorBorder@;
|
|
padding: 2px;
|
|
}
|
|
|
|
#ToolbarEval > label {
|
|
font-weight: bold;
|
|
color: @scopeBarTitleColor@;
|
|
}
|
|
|
|
#TextfieldEval {
|
|
margin: 2px !important;
|
|
}
|
|
|
|
#ButtonEval {
|
|
margin: 0 4px;
|
|
padding: 1px 10px;
|
|
appearance: none;
|
|
border-radius: 10000px;
|
|
border: @roundButtonBorder@;
|
|
background: @roundButtonBackground@;
|
|
box-shadow: @roundButtonShadow@;
|
|
}
|
|
|
|
#ButtonEval:hover:active {
|
|
text-shadow: @loweredShadow@;
|
|
background: @roundButtonPressedBackground@;
|
|
box-shadow: @roundButtonPressedShadow@;
|
|
}
|
|
|
|
toolbarseparator {
|
|
min-height: 1em;
|
|
background-image: none;
|
|
}
|
|
|
|
/* Toolbar icons */
|
|
|
|
#ToolbarMode {
|
|
-moz-box-pack: center;
|
|
}
|
|
|
|
#ToolbarMode toolbarbutton > .toolbarbutton-icon {
|
|
display: none;
|
|
}
|
|
|
|
#Console\:clear {
|
|
-moz-box-orient: vertical;
|
|
-moz-box-align: center;
|
|
appearance: toolbarbutton;
|
|
font: menu;
|
|
text-shadow: @loweredShadow@;
|
|
margin: 4px 0 9px;
|
|
padding: 0 1px;
|
|
}
|