2013-06-21 03:30:10 -07:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
/* General output styles */
|
|
|
|
|
2013-09-13 05:06:46 -07:00
|
|
|
a {
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
-moz-user-input: enabled;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Workaround for Bug 575675 - FindChildWithRules aRelevantLinkVisited
|
|
|
|
* assertion when loading HTML page with links in XUL iframe */
|
|
|
|
*:visited { }
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
.message {
|
2013-09-13 05:06:46 -07:00
|
|
|
display: flex;
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2014-04-25 11:43:21 -07:00
|
|
|
padding: 0 7px;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
.message > .timestamp {
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-09-05 09:34:22 -07:00
|
|
|
color: GrayText;
|
2014-04-25 11:43:21 -07:00
|
|
|
margin: 4px 6px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message > .indent {
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-09-05 09:34:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.message > .icon {
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2014-04-25 11:43:21 -07:00
|
|
|
margin: 3px 6px 0 0;
|
2013-09-13 05:06:46 -07:00
|
|
|
padding: 0 4px;
|
2014-04-25 11:43:21 -07:00
|
|
|
height: 1em;
|
|
|
|
align-self: flex-start;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message > .icon::before {
|
|
|
|
content: "";
|
|
|
|
background-image: url(chrome://browser/skin/devtools/webconsole.png);
|
|
|
|
background-position: 8px 8px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 48px 40px;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
.message > .icon::before {
|
|
|
|
background-image: url(chrome://browser/skin/devtools/webconsole@2x.png);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-22 11:45:04 -07:00
|
|
|
.message > .message-body-wrapper {
|
2013-09-13 05:06:46 -07:00
|
|
|
flex: 1 1 100%;
|
2014-04-25 11:43:21 -07:00
|
|
|
margin: 3px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
/* The red bubble that shows the number of times a message is repeated */
|
2014-01-23 13:37:32 -08:00
|
|
|
.message-repeats {
|
2013-09-13 05:06:46 -07:00
|
|
|
-moz-user-select: none;
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-09-13 05:06:46 -07:00
|
|
|
margin: 2px 6px;
|
|
|
|
padding: 0 6px;
|
|
|
|
height: 1.25em;
|
2013-06-21 03:30:10 -07:00
|
|
|
color: white;
|
|
|
|
background-color: red;
|
|
|
|
border-radius: 40px;
|
|
|
|
font: message-box;
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.message-repeats[value="1"] {
|
2013-06-21 03:30:10 -07:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.message-location {
|
2013-10-31 13:28:08 -07:00
|
|
|
display: flex;
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-09-13 05:06:46 -07:00
|
|
|
align-self: flex-start;
|
2013-10-31 13:28:08 -07:00
|
|
|
justify-content: flex-end;
|
2013-06-21 03:30:10 -07:00
|
|
|
width: 10em;
|
2014-04-25 11:43:21 -07:00
|
|
|
margin-top: 3px;
|
2013-09-13 05:06:46 -07:00
|
|
|
color: -moz-nativehyperlinktext;
|
|
|
|
text-decoration: none;
|
2014-01-23 13:37:32 -08:00
|
|
|
white-space: nowrap;
|
2013-09-13 05:06:46 -07:00
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.message-location:hover,
|
|
|
|
.message-location:focus {
|
2013-09-13 05:06:46 -07:00
|
|
|
text-decoration: underline;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.message-location > .filename {
|
2013-10-31 13:28:08 -07:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
text-align: end;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.message-location > .line-number {
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-10-31 13:28:08 -07:00
|
|
|
}
|
|
|
|
|
2014-04-22 11:45:04 -07:00
|
|
|
.message-flex-body {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-flex-body > .message-body {
|
|
|
|
display: block;
|
2014-08-07 22:11:48 -07:00
|
|
|
flex: 1 1 main-size;
|
2014-04-25 11:43:21 -07:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-flex-body > .message-location {
|
|
|
|
margin-top: 0;
|
2014-04-22 11:45:04 -07:00
|
|
|
}
|
|
|
|
|
2013-09-13 05:06:46 -07:00
|
|
|
.jsterm-input-container {
|
2013-11-21 05:49:48 -08:00
|
|
|
border-top-width: 1px;
|
|
|
|
border-top-style: solid;
|
2013-08-06 07:14:51 -07:00
|
|
|
}
|
|
|
|
|
2013-09-13 05:06:46 -07:00
|
|
|
#output-wrapper {
|
|
|
|
direction: ltr;
|
2013-09-05 09:34:22 -07:00
|
|
|
overflow: auto;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
#output-container {
|
2013-09-13 05:06:46 -07:00
|
|
|
-moz-user-select: text;
|
|
|
|
-moz-box-flex: 1;
|
2013-09-05 09:34:22 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
#output-container.hideTimestamps > .message {
|
|
|
|
-moz-padding-start: 0;
|
|
|
|
-moz-margin-start: 7px;
|
|
|
|
width: calc(100% - 7px);
|
|
|
|
}
|
|
|
|
|
2013-11-11 09:00:07 -08:00
|
|
|
#output-container.hideTimestamps > .message > .timestamp {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
.theme-dark #output-container.hideTimestamps > .message > .indent {
|
|
|
|
background-color: #14171a; /* .theme-body */
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-light #output-container.hideTimestamps > .message > .indent {
|
|
|
|
background-color: #fcfcfc; /* .theme-body */
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
.filtered-by-type,
|
|
|
|
.filtered-by-string {
|
2013-06-21 03:30:10 -07:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden-message {
|
|
|
|
display: block;
|
|
|
|
visibility: hidden;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* WebConsole colored drops */
|
|
|
|
|
|
|
|
.webconsole-filter-button {
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.webconsole-filter-button > .toolbarbutton-menubutton-button:before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
height: 8px;
|
|
|
|
width: 8px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-left: 5px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Network styles */
|
|
|
|
.webconsole-filter-button[category="net"] > .toolbarbutton-menubutton-button:before {
|
|
|
|
background-image: linear-gradient(#444444, #000000);
|
|
|
|
border-color: #777;
|
|
|
|
}
|
|
|
|
|
2014-07-07 02:30:00 -07:00
|
|
|
.theme-light .message:hover {
|
|
|
|
background-color: rgba(76, 158, 217, 0.23) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-dark .message:hover {
|
|
|
|
background-color: rgba(29, 79, 115, 0.5) !important;
|
|
|
|
}
|
|
|
|
|
2014-04-22 11:45:04 -07:00
|
|
|
.theme-light .message[severity=error] {
|
|
|
|
background-color: rgba(255, 150, 150, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-dark .message[severity=error] {
|
2014-04-25 11:43:21 -07:00
|
|
|
background-color: rgba(235, 83, 104, 0.17);
|
2014-04-22 11:45:04 -07:00
|
|
|
}
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
.theme-dark .console-string {
|
|
|
|
color: #d99b28;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-light .console-string {
|
|
|
|
color: hsl(24,85%,39%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.message[category=network] > .indent {
|
|
|
|
-moz-border-end: solid #000 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=network][severity=error] > .icon::before {
|
|
|
|
background-position: -8px 0;
|
2013-09-13 05:06:46 -07:00
|
|
|
}
|
|
|
|
|
2014-04-22 11:45:04 -07:00
|
|
|
.message[category=network] > .message-body {
|
2013-09-13 05:06:46 -07:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
.message[category=network] .method {
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-09-13 05:06:46 -07:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
.message[category=network]:not(.navigation-marker) .url {
|
2014-08-07 22:11:48 -07:00
|
|
|
flex: 1 1 main-size;
|
2013-09-05 09:34:22 -07:00
|
|
|
/* Make sure the URL is very small initially, let flex change width as needed. */
|
|
|
|
width: 100px;
|
|
|
|
min-width: 5em;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message[category=network] .status {
|
2014-08-14 10:38:38 -07:00
|
|
|
flex: none;
|
2013-09-13 05:06:46 -07:00
|
|
|
-moz-margin-start: 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:34:22 -07:00
|
|
|
.message[category=network].mixed-content .url {
|
|
|
|
color: #FF0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message .learn-more-link {
|
2014-03-04 11:59:00 -08:00
|
|
|
color: -moz-nativehyperlinktext;
|
2013-09-05 09:34:22 -07:00
|
|
|
margin: 0 6px;
|
|
|
|
}
|
|
|
|
|
2013-06-21 03:30:10 -07:00
|
|
|
/* CSS styles */
|
|
|
|
.webconsole-filter-button[category="css"] > .toolbarbutton-menubutton-button:before {
|
|
|
|
background-image: linear-gradient(#2DC3F3, #00B6F0);
|
|
|
|
border-color: #1BA2CC;
|
|
|
|
}
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
.message[category=cssparser] > .indent {
|
|
|
|
-moz-border-end: solid #00b6f0 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=cssparser][severity=error] > .icon::before {
|
|
|
|
background-position: -8px -8px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=cssparser][severity=warn] > .icon::before {
|
|
|
|
background-position: -16px -8px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* JS styles */
|
|
|
|
.webconsole-filter-button[category="js"] > .toolbarbutton-menubutton-button:before {
|
|
|
|
background-image: linear-gradient(#FCB142, #FB9500);
|
|
|
|
border-color: #E98A00;
|
|
|
|
}
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
.message[category=exception] > .indent {
|
|
|
|
-moz-border-end: solid #fb9500 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=exception][severity=error] > .icon::before {
|
|
|
|
background-position: -8px -16px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=exception][severity=warn] > .icon::before {
|
|
|
|
background-position: -16px -16px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Web Developer styles */
|
|
|
|
.webconsole-filter-button[category="logging"] > .toolbarbutton-menubutton-button:before {
|
|
|
|
background-image: linear-gradient(#B9B9B9, #AAAAAA);
|
|
|
|
border-color: #929292;
|
|
|
|
}
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
.message[category=console] > .indent {
|
|
|
|
-moz-border-end: solid #cbcbcb 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=console][severity=error] > .icon::before,
|
|
|
|
.message[category=output][severity=error] > .icon::before {
|
|
|
|
background-position: -8px -24px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=console][severity=warn] > .icon::before {
|
|
|
|
background-position: -16px -24px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=console][severity=info] > .icon::before {
|
|
|
|
background-position: -24px -24px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Input and output styles */
|
2014-04-25 11:43:21 -07:00
|
|
|
.message[category=input] > .indent,
|
|
|
|
.message[category=output] > .indent {
|
|
|
|
-moz-border-end: solid #808080 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=input] > .icon::before {
|
|
|
|
background-position: -32px -24px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=output] > .icon::before {
|
|
|
|
background-position: -40px -24px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* JSTerm Styles */
|
|
|
|
.jsterm-input-node,
|
|
|
|
.jsterm-complete-node {
|
|
|
|
border: none;
|
|
|
|
padding: 0 0 0 16px;
|
|
|
|
-moz-appearance: none;
|
2013-11-25 08:20:36 -08:00
|
|
|
background-color: transparent;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.jsterm-input-node {
|
2014-05-12 23:18:00 -07:00
|
|
|
background-image: -moz-image-rect(url("chrome://browser/skin/devtools/commandline-icon.png"), 0, 32, 16, 16);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 16px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
.jsterm-input-node {
|
|
|
|
background-image: -moz-image-rect(url('chrome://browser/skin/devtools/commandline-icon@2x.png'), 0, 64, 32, 32);
|
|
|
|
}
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
:-moz-any(.jsterm-input-node,
|
|
|
|
.jsterm-complete-node) > .textbox-input-box > .textbox-textarea {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2014-04-22 11:45:04 -07:00
|
|
|
.inlined-variables-view .message-body {
|
2013-09-13 05:06:46 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2013-09-05 09:34:22 -07:00
|
|
|
.inlined-variables-view iframe {
|
2013-09-13 05:06:46 -07:00
|
|
|
display: block;
|
|
|
|
flex: 1;
|
2013-12-06 08:24:06 -08:00
|
|
|
margin-top: 5px;
|
2013-06-21 03:30:10 -07:00
|
|
|
margin-bottom: 15px;
|
|
|
|
-moz-margin-end: 15px;
|
2013-12-06 08:24:06 -08:00
|
|
|
border: 1px solid rgba(128, 128, 128, .5);
|
|
|
|
border-radius: 3px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#webconsole-sidebar > tabs {
|
|
|
|
height: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2014-01-30 12:42:15 -08:00
|
|
|
.devtools-side-splitter ~ #webconsole-sidebar[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-06-21 03:30:10 -07:00
|
|
|
/* Security styles */
|
|
|
|
|
2014-04-25 11:43:21 -07:00
|
|
|
.message[category=security] > .indent {
|
|
|
|
-moz-border-end: solid red 6px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.webconsole-filter-button[category="security"] > .toolbarbutton-menubutton-button:before {
|
|
|
|
background-image: linear-gradient(#FF3030, #FF7D7D);
|
|
|
|
border-color: #D12C2C;
|
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=security][severity=error] > .icon::before {
|
|
|
|
background-position: -8px -32px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-12 23:18:00 -07:00
|
|
|
.message[category=security][severity=warn] > .icon::before {
|
|
|
|
background-position: -16px -32px;
|
2013-06-21 03:30:10 -07:00
|
|
|
}
|
2013-08-02 10:19:23 -07:00
|
|
|
|
|
|
|
.navigation-marker {
|
|
|
|
color: #aaa;
|
2013-11-21 05:49:48 -08:00
|
|
|
background: linear-gradient(#aaa, #aaa) no-repeat left 50%;
|
2013-08-02 10:19:23 -07:00
|
|
|
background-size: 100% 2px;
|
2013-09-13 05:06:46 -07:00
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
2013-08-02 10:19:23 -07:00
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-marker .url {
|
2013-09-13 05:06:46 -07:00
|
|
|
-moz-padding-end: 9px;
|
|
|
|
text-decoration: none;
|
2013-08-02 10:19:23 -07:00
|
|
|
}
|
2013-11-21 05:49:48 -08:00
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.stacktrace {
|
2014-04-22 11:45:04 -07:00
|
|
|
display: none;
|
2014-01-23 13:37:32 -08:00
|
|
|
list-style: none;
|
|
|
|
padding: 0 1em 0 1.5em;
|
2014-04-22 11:45:04 -07:00
|
|
|
margin: 5px 0 0 0;
|
2014-01-23 13:37:32 -08:00
|
|
|
max-height: 10em;
|
|
|
|
overflow-y: auto;
|
2014-04-22 11:45:04 -07:00
|
|
|
border: 1px solid rgb(200,200,200);
|
2014-01-23 13:37:32 -08:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2014-04-22 11:45:04 -07:00
|
|
|
.theme-light .message[severity=error] .stacktrace {
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-dark .message[severity=error] .stacktrace {
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.message[open] .stacktrace {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message .theme-twisty {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2014-04-25 11:43:21 -07:00
|
|
|
margin: 0 3px 0 0;
|
2014-04-22 11:45:04 -07:00
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.stacktrace li {
|
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacktrace .function {
|
|
|
|
display: block;
|
2014-08-07 22:11:48 -07:00
|
|
|
flex: 1 1 main-size;
|
2014-01-23 13:37:32 -08:00
|
|
|
}
|
|
|
|
|
2014-03-04 11:59:00 -08:00
|
|
|
.cm-s-mozilla a[class] {
|
|
|
|
font-style: italic;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cm-s-mozilla a[class]:hover,
|
|
|
|
.cm-s-mozilla a[class]:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-03-11 03:21:20 -07:00
|
|
|
/* Open DOMNode in inspector button */
|
|
|
|
.open-inspector {
|
|
|
|
background: url("chrome://browser/skin/devtools/vview-open-inspector.png") no-repeat 0 0;
|
|
|
|
padding-left: 16px;
|
|
|
|
margin-left: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.elementNode:hover .open-inspector,
|
|
|
|
.open-inspector:hover {
|
|
|
|
background-position: -32px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.open-inspector:active {
|
|
|
|
background-position: -16px 0;
|
|
|
|
}
|
|
|
|
|
2013-11-21 05:49:48 -08:00
|
|
|
/* Replace these values with CSS variables as available */
|
2013-11-25 08:20:36 -08:00
|
|
|
.theme-dark .jsterm-input-container {
|
2013-11-21 05:49:48 -08:00
|
|
|
background-color: #252c33; /* tabToolbarBackgroundColor */
|
2014-03-03 09:55:34 -08:00
|
|
|
border-color: #14171a; /* mainBackgroundColor */
|
2013-11-21 05:49:48 -08:00
|
|
|
}
|
|
|
|
|
2013-11-25 08:20:36 -08:00
|
|
|
.theme-dark .jsterm-input-node {
|
2014-03-03 09:55:34 -08:00
|
|
|
color: #a9bacb; /* textColor */
|
2013-11-25 08:20:36 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-dark .jsterm-complete-node {
|
|
|
|
color: #5c6773; /* commentColor */
|
|
|
|
}
|
|
|
|
|
2013-11-21 05:49:48 -08:00
|
|
|
.theme-dark .navigation-marker .url {
|
2014-03-03 09:55:34 -08:00
|
|
|
background: #14171a; /* mainBackgroundColor */
|
2013-11-21 05:49:48 -08:00
|
|
|
}
|
|
|
|
|
2013-12-06 08:24:06 -08:00
|
|
|
.theme-dark .inlined-variables-view iframe {
|
|
|
|
border-color: #333;
|
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.theme-dark .stacktrace {
|
|
|
|
border-color: #333;
|
|
|
|
}
|
|
|
|
|
2013-11-25 08:20:36 -08:00
|
|
|
.theme-light .jsterm-input-container {
|
2013-11-21 05:49:48 -08:00
|
|
|
background-color: #fff; /* mainBackgroundColor */
|
|
|
|
border-color: ThreeDShadow;
|
|
|
|
}
|
|
|
|
|
2013-11-25 08:20:36 -08:00
|
|
|
.theme-light .jsterm-input-node {
|
|
|
|
color: black; /* textColor */
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-light .jsterm-complete-node {
|
|
|
|
color: hsl(90,2%,46%); /* commentColor */
|
|
|
|
}
|
|
|
|
|
2013-11-21 05:49:48 -08:00
|
|
|
.theme-light .navigation-marker .url {
|
|
|
|
background: #fff; /* mainBackgroundColor */
|
|
|
|
}
|
2013-12-06 08:24:06 -08:00
|
|
|
|
|
|
|
.theme-light .inlined-variables-view iframe {
|
|
|
|
border-color: #ccc;
|
|
|
|
}
|
|
|
|
|
2014-01-23 13:37:32 -08:00
|
|
|
.theme-light .stacktrace {
|
|
|
|
border-color: #ccc;
|
|
|
|
}
|
|
|
|
|
2014-01-13 13:00:18 -08:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
.message > .timestamp {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-06-13 07:11:32 -07:00
|
|
|
.hud-console-filter-toolbar .webconsole-filter-button .toolbarbutton-text {
|
2014-01-13 13:00:18 -08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.hud-console-filter-toolbar .webconsole-filter-button {
|
|
|
|
min-width: 40px;
|
|
|
|
}
|
|
|
|
.hud-console-filter-toolbar .webconsole-clear-console-button {
|
|
|
|
min-width: 25px;
|
|
|
|
}
|
|
|
|
.webconsole-filter-button > .toolbarbutton-menubutton-button:before {
|
2014-06-13 07:11:32 -07:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2014-01-13 13:00:18 -08:00
|
|
|
margin-left: 1px;
|
|
|
|
}
|
|
|
|
.toolbarbutton-menubutton-dropmarker {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 300px) {
|
|
|
|
.hud-console-filter-toolbar {
|
|
|
|
-moz-box-orient: vertical;
|
|
|
|
}
|
|
|
|
.toolbarbutton-text {
|
|
|
|
display: -moz-box;
|
|
|
|
}
|
|
|
|
.devtools-toolbarbutton {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
.hud-console-filter-toolbar .hud-filter-box,
|
|
|
|
.hud-console-filter-toolbar .devtools-toolbarbutton {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|