2012-11-08 20:36:06 +00: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/. */
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2014-09-03 01:18:26 +00:00
|
|
|
background-color: -moz-Dialog;
|
|
|
|
color: -moz-DialogText;
|
2012-11-08 20:36:06 +00:00
|
|
|
font: message-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page-description {
|
|
|
|
border: 1px solid threedshadow;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2015-05-13 19:57:05 +00:00
|
|
|
#settings {
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2015-05-13 19:57:05 +00:00
|
|
|
.description-enabled,
|
|
|
|
.description-disabled {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-enabled > span {
|
2012-11-08 20:36:06 +00:00
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
2015-05-13 19:57:05 +00:00
|
|
|
.description-disabled > span {
|
2012-11-08 20:36:06 +00:00
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2015-05-13 19:57:05 +00:00
|
|
|
#ping-picker {
|
|
|
|
margin-top: 10px;
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ping-source-picker {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2012-11-08 20:36:06 +00:00
|
|
|
.data-section {
|
2014-09-03 01:18:26 +00:00
|
|
|
background-color: -moz-Field;
|
|
|
|
color: -moz-FieldText;
|
2012-11-08 20:36:06 +00:00
|
|
|
border-top: 1px solid threedshadow;
|
|
|
|
border-bottom: 1px solid threedshadow;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:54:01 +00:00
|
|
|
.data-section:not(.has-data) {
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-08 20:36:06 +00:00
|
|
|
.section-name {
|
|
|
|
font-size: x-large;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:54:01 +00:00
|
|
|
.has-data .section-name {
|
|
|
|
cursor: pointer;
|
2012-11-08 20:36:06 +00:00
|
|
|
}
|
|
|
|
|
2013-12-10 20:54:01 +00:00
|
|
|
|
2012-11-08 20:36:06 +00:00
|
|
|
.toggle-caption {
|
|
|
|
font-style: italic;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:54:01 +00:00
|
|
|
.data-section:not(.has-data) .toggle-caption {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-08 20:36:06 +00:00
|
|
|
.empty-caption {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:54:01 +00:00
|
|
|
.has-data .empty-caption {
|
|
|
|
display: none; /* invisible when has-data */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.data {
|
|
|
|
margin: 15px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-data.expanded .data {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-06 21:41:30 +00:00
|
|
|
.stack-title {
|
2012-11-08 20:36:06 +00:00
|
|
|
font-size: medium;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-01-15 05:39:16 +00:00
|
|
|
#histograms, #addon-histograms, #thread-hang-stats>div {
|
2012-11-08 20:36:06 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.histogram {
|
|
|
|
float: left;
|
|
|
|
border: 1px solid gray;
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 10px;
|
2013-11-29 17:31:14 +00:00
|
|
|
position: relative; /* required for position:absolute of the contained .copy-node */
|
2012-11-08 20:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body[dir="rtl"] .histogram {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.histogram-title {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2014-10-31 20:47:13 +00:00
|
|
|
.keyed-histogram {
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 15px;
|
|
|
|
position: relative; /* required for position:absolute of the contained .copy-node */
|
|
|
|
display: block;
|
2014-11-16 11:00:52 +00:00
|
|
|
overflow: hidden;
|
2014-10-31 20:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.keyed-histogram-title {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: 100%;
|
|
|
|
margin: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 120%;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-08 20:36:06 +00:00
|
|
|
.bar {
|
|
|
|
width: 2em;
|
|
|
|
margin: 2px;
|
|
|
|
text-align: center;
|
|
|
|
float: left;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
body[dir="rtl"] .bar {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-inner {
|
|
|
|
background-color: DeepSkyBlue;
|
|
|
|
border: 1px solid #0000b0;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-weight: bold;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
body[dir="rtl"] th {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
caption {
|
|
|
|
font-weight: bold;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: left;
|
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
|
|
|
|
body[dir="rtl"] caption {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2013-11-29 17:31:14 +00:00
|
|
|
|
|
|
|
.copy-node {
|
|
|
|
visibility: hidden;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 1px;
|
|
|
|
right: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body[dir="rtl"] .copy-node {
|
|
|
|
left: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.histogram:hover .copy-node {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
2013-12-10 20:54:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
.statebox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.filter-ui {
|
|
|
|
-moz-padding-start: 10em;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-data.expanded .filter-ui {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-blocked {
|
|
|
|
display: none;
|
|
|
|
}
|