toolkit/content/aboutTelemetry.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/content/aboutTelemetry.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,190 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +.hidden {
     1.9 +  display: none;
    1.10 +}
    1.11 +
    1.12 +html {
    1.13 +  background-color: -moz-Field;
    1.14 +  color: -moz-FieldText;
    1.15 +  font: message-box;
    1.16 +}
    1.17 +
    1.18 +body {
    1.19 +  padding: 0px;
    1.20 +  margin: 0px;
    1.21 +}
    1.22 +
    1.23 +h2 {
    1.24 +  font-size: medium;
    1.25 +}
    1.26 +
    1.27 +#page-description {
    1.28 +  background-color: LightGray;
    1.29 +  border: 1px solid threedshadow;
    1.30 +  margin: 0px;
    1.31 +  padding: 10px;
    1.32 +}
    1.33 +
    1.34 +#description-enabled > span {
    1.35 +  color: green;
    1.36 +}
    1.37 +
    1.38 +#description-disabled > span {
    1.39 +  color: red;
    1.40 +}
    1.41 +
    1.42 +.data-section {
    1.43 +  background-color: WhiteSmoke;
    1.44 +  border-top: 1px solid threedshadow;
    1.45 +  border-bottom: 1px solid threedshadow;
    1.46 +  margin: 0px;
    1.47 +  padding: 10px;
    1.48 +}
    1.49 +
    1.50 +.data-section:not(.has-data) {
    1.51 +  color: gray;
    1.52 +}
    1.53 +
    1.54 +
    1.55 +.section-name {
    1.56 +  font-size: x-large;
    1.57 +  display: inline;
    1.58 +}
    1.59 +
    1.60 +.has-data .section-name {
    1.61 +  cursor: pointer;
    1.62 +}
    1.63 +
    1.64 +
    1.65 +.toggle-caption {
    1.66 +  font-style: italic;
    1.67 +  cursor: pointer;
    1.68 +}
    1.69 +
    1.70 +.data-section:not(.has-data) .toggle-caption {
    1.71 +  display: none;
    1.72 +}
    1.73 +
    1.74 +
    1.75 +.empty-caption {
    1.76 +  font-style: italic;
    1.77 +}
    1.78 +
    1.79 +.has-data .empty-caption {
    1.80 +  display: none; /* invisible when has-data */
    1.81 +}
    1.82 +
    1.83 +
    1.84 +.data {
    1.85 +  margin: 15px;
    1.86 +  display: none;
    1.87 +}
    1.88 +
    1.89 +.has-data.expanded .data {
    1.90 +  display: block;
    1.91 +}
    1.92 +
    1.93 +
    1.94 +.stack-title {
    1.95 +  font-size: medium;
    1.96 +  font-weight: bold;
    1.97 +  text-decoration: underline;
    1.98 +}
    1.99 +
   1.100 +#histograms, #addon-histograms, #thread-hang-stats>div {
   1.101 +  overflow: hidden;
   1.102 +}
   1.103 +
   1.104 +.histogram {
   1.105 +  float: left;
   1.106 +  border: 1px solid gray;
   1.107 +  white-space: nowrap;
   1.108 +  padding: 10px;
   1.109 +  position: relative; /* required for position:absolute of the contained .copy-node */
   1.110 +}
   1.111 +
   1.112 +body[dir="rtl"] .histogram {
   1.113 +  float: right;
   1.114 +}
   1.115 +
   1.116 +.histogram-title {
   1.117 +  text-overflow: ellipsis;
   1.118 +  width: 100%;
   1.119 +  white-space: nowrap;
   1.120 +  overflow: hidden;
   1.121 +}
   1.122 +
   1.123 +.bar {
   1.124 +  width: 2em;
   1.125 +  margin: 2px;
   1.126 +  text-align: center;
   1.127 +  float: left;
   1.128 +  font-family: monospace;
   1.129 +}
   1.130 +
   1.131 +body[dir="rtl"] .bar {
   1.132 +  float: right;
   1.133 +}
   1.134 +
   1.135 +.bar-inner {
   1.136 +  background-color: DeepSkyBlue;
   1.137 +  border: 1px solid #0000b0;
   1.138 +}
   1.139 +
   1.140 +th {
   1.141 +  font-weight: bold;
   1.142 +  white-space: nowrap;
   1.143 +  text-align: left;
   1.144 +}
   1.145 +
   1.146 +body[dir="rtl"] th {
   1.147 +  text-align: right;
   1.148 +}
   1.149 +
   1.150 +caption {
   1.151 +  font-weight: bold;
   1.152 +  white-space: nowrap;
   1.153 +  text-align: left;
   1.154 +  font-size: large;
   1.155 +}
   1.156 +
   1.157 +body[dir="rtl"] caption {
   1.158 +  text-align: right;
   1.159 +}
   1.160 +
   1.161 +.copy-node {
   1.162 +  visibility: hidden;
   1.163 +  position: absolute;
   1.164 +  bottom: 1px;
   1.165 +  right: 1px;
   1.166 +}
   1.167 +
   1.168 +body[dir="rtl"] .copy-node {
   1.169 +  left: 1px;
   1.170 +}
   1.171 +
   1.172 +.histogram:hover .copy-node {
   1.173 +  visibility: visible;
   1.174 +}
   1.175 +
   1.176 +
   1.177 +.statebox {
   1.178 +  display: none;
   1.179 +}
   1.180 +
   1.181 +
   1.182 +.filter-ui {
   1.183 +  -moz-padding-start: 10em;
   1.184 +  display: none;
   1.185 +}
   1.186 +
   1.187 +.has-data.expanded .filter-ui {
   1.188 +  display: inline;
   1.189 +}
   1.190 +
   1.191 +.filter-blocked {
   1.192 +  display: none;
   1.193 +}

mercurial