toolkit/components/aboutmemory/content/aboutMemory.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/components/aboutmemory/content/aboutMemory.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,154 @@
     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 +/*
     1.9 + * The version used for mobile is located at
    1.10 + * mobile/android/themes/core/aboutMemory.css.
    1.11 + * Desktop-specific stuff is at the bottom of this file.
    1.12 + */
    1.13 +
    1.14 +html {
    1.15 +  background: -moz-Dialog;
    1.16 +  font: message-box;
    1.17 +}
    1.18 +
    1.19 +body {
    1.20 +  padding: 0 2em;
    1.21 +  margin: 0;
    1.22 +  min-width: 45em;
    1.23 +  margin: auto;
    1.24 +}
    1.25 +
    1.26 +div.ancillary {
    1.27 +  margin: 0.5em 0;
    1.28 +  -moz-user-select: none;
    1.29 +}
    1.30 +
    1.31 +div.section {
    1.32 +  padding: 2em;
    1.33 +  margin: 1em 0em;
    1.34 +  border: 1px solid ThreeDShadow;
    1.35 +  border-radius: 10px;
    1.36 +  background: -moz-Field;
    1.37 +}
    1.38 +
    1.39 +div.opsRow {
    1.40 +  padding: 0.5em;
    1.41 +  margin-right: 0.5em;
    1.42 +  margin-top: 0.5em;
    1.43 +  border: 1px solid ThreeDShadow;
    1.44 +  border-radius: 10px;
    1.45 +  background: -moz-Field;
    1.46 +  display: inline-block;
    1.47 +}
    1.48 +
    1.49 +div.opsRowLabel {
    1.50 +  display: block;
    1.51 +  margin-bottom: 0.2em;
    1.52 +  font-weight: bold;
    1.53 +}
    1.54 +
    1.55 +.opsRowLabel label {
    1.56 +  margin-left: 1em;
    1.57 +  font-weight: normal;
    1.58 +}
    1.59 +
    1.60 +div.non-verbose pre.entries {
    1.61 +  overflow-x: hidden;
    1.62 +  text-overflow: ellipsis;
    1.63 +}
    1.64 +
    1.65 +h1 {
    1.66 +  padding: 0;
    1.67 +  margin: 0;
    1.68 +  display: inline;  /* allow subsequent text to the right of the heading */
    1.69 +}
    1.70 +
    1.71 +h2 {
    1.72 +  background: #ddd;
    1.73 +  padding-left: .1em;
    1.74 +}
    1.75 +
    1.76 +h3 {
    1.77 +  display: inline;  /* allow subsequent text to the right of the heading */
    1.78 +}
    1.79 +
    1.80 +a.upDownArrow {
    1.81 +  font-size: 130%;
    1.82 +  text-decoration: none;
    1.83 +  -moz-user-select: none;  /* no need to include this when cutting+pasting */
    1.84 +}
    1.85 +
    1.86 +.accuracyWarning {
    1.87 +  color: #d22;
    1.88 +}
    1.89 +
    1.90 +.badInputWarning {
    1.91 +  color: #f00;
    1.92 +}
    1.93 +
    1.94 +.treeline {
    1.95 +  color: #888;
    1.96 +}
    1.97 +
    1.98 +.mrValue {
    1.99 +  font-weight: bold;
   1.100 +  color: #400;
   1.101 +}
   1.102 +
   1.103 +.mrPerc {
   1.104 +}
   1.105 +
   1.106 +.mrSep {
   1.107 +}
   1.108 +
   1.109 +.mrName {
   1.110 +  color: #004;
   1.111 +}
   1.112 +
   1.113 +.mrNote {
   1.114 +  color: #604;
   1.115 +}
   1.116 +
   1.117 +.hasKids {
   1.118 +  cursor: pointer;
   1.119 +}
   1.120 +
   1.121 +.hasKids:hover {
   1.122 +  text-decoration: underline;
   1.123 +}
   1.124 +
   1.125 +.noselect {
   1.126 +  -moz-user-select: none;  /* no need to include this when cutting+pasting */
   1.127 +}
   1.128 +
   1.129 +.option {
   1.130 +  font-size: 80%;
   1.131 +  -moz-user-select: none;  /* no need to include this when cutting+pasting */
   1.132 +}
   1.133 +
   1.134 +.legend {
   1.135 +  font-size: 80%;
   1.136 +  -moz-user-select: none;  /* no need to include this when cutting+pasting */
   1.137 +}
   1.138 +
   1.139 +.debug {
   1.140 +  font-size: 80%;
   1.141 +}
   1.142 +
   1.143 +.hidden {
   1.144 +  display: none;
   1.145 +}
   1.146 +
   1.147 +.invalid {
   1.148 +  color: #fff;
   1.149 +  background-color: #f00;
   1.150 +}
   1.151 +
   1.152 +/* Desktop-specific parts go here. */
   1.153 +
   1.154 +.hasKids:hover {
   1.155 +  text-decoration: underline;
   1.156 +}
   1.157 +

mercurial