Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 html {
6 background-color: -moz-Field;
7 color: -moz-FieldText;
8 font: message-box;
9 }
11 body {
12 width: 90%;
13 margin-left: 5%;
14 margin-right: 5%;
15 }
17 .page-subtitle {
18 margin-bottom: 3em;
19 }
21 .major-section {
22 margin-top: 2em;
23 margin-bottom: 1em;
24 font-size: large;
25 text-align: start;
26 font-weight: bold;
27 }
29 #copy-raw-data-to-clipboard,
30 #copy-to-clipboard {
31 padding-top: 2%;
32 width: 100%;
33 padding-bottom: 2%;
34 margin: 1%;
35 }
37 table {
38 background-color: -moz-Dialog;
39 color: -moz-DialogText;
40 font: message-box;
41 font-size: xx-large;
42 text-align: start;
43 width: 100%;
44 border: 1px solid ThreeDShadow;
45 border-spacing: 0px;
46 }
48 th, td {
49 border: 1px dotted ThreeDShadow;
50 padding: 3px;
51 }
53 thead th {
54 text-align: center;
55 }
57 th {
58 text-align: start;
59 background-color: Highlight;
60 color: HighlightText;
61 }
63 th.column {
64 white-space: nowrap;
65 width: 0px;
66 }
68 td {
69 text-align: start;
70 border-top: 1px dotted ThreeDShadow;
71 }
73 .prefs-table {
74 width: 100%;
75 table-layout: fixed;
76 }
78 .pref-name {
79 width: 70%;
80 white-space: nowrap;
81 overflow: hidden;
82 }
84 .pref-value {
85 width: 30%;
86 white-space: nowrap;
87 overflow: hidden;
88 }
90 #profile-row {
91 display: none;
92 }
94 #reset-box {
95 display: none;
96 }