start 2.41 cycle (yes, leaving out 2.39 and 2.40)
[themes.git] / EarlyBlue / global / aboutSupport.css
CommitLineData
9099c61d
RK
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/. */
6bcac19c
RK
4
5html {
ed351b91
RK
6 --aboutSupport-table-background: #CCD0DD;
7 background-color: var(--in-content-page-background);
6bcac19c
RK
8}
9
10body {
ed351b91 11 margin: 40px 48px;
6bcac19c
RK
12}
13
14.page-subtitle {
15 margin-bottom: 3em;
16}
17
18.major-section {
19 margin-top: 2em;
20 margin-bottom: 1em;
21 font-size: large;
22 text-align: start;
23 font-weight: bold;
24}
25
ed351b91
RK
26button {
27 -moz-margin-start: 0;
28 -moz-margin-end: 8px;
29}
30
6bcac19c 31table {
ed351b91
RK
32 background-color: var(--aboutSupport-table-background);
33 color: var(--in-content-text-color);
6bcac19c
RK
34 text-align: start;
35 width: 100%;
ed351b91 36 border: 1px solid var(--in-content-border-color);
6bcac19c
RK
37 border-spacing: 0px;
38}
39
40th, td {
ed351b91 41 padding: 4px;
6bcac19c
RK
42}
43
ed351b91
RK
44th:not(:first-child),
45td:not(:first-child) {
46 border-left: 1px dotted var(--in-content-border-color);
42f50429
RK
47}
48
6bcac19c
RK
49thead th {
50 text-align: center;
51}
52
53th {
54 text-align: start;
ed351b91
RK
55 background-color: var(--in-content-table-header-background);
56 color: var(--in-content-selected-text);
6bcac19c
RK
57}
58
59th.column {
60 white-space: nowrap;
61 width: 0px;
62}
63
64td {
65 text-align: start;
ed351b91
RK
66}
67
68tr:not(:first-child) > td,
69tr:not(:first-child) > th {
70 text-align: start;
71 border-top: 1px dotted var(--in-content-table-border-dark-color);
6bcac19c
RK
72}
73
74.prefs-table {
75 width: 100%;
76 table-layout: fixed;
77}
78
79.pref-name {
80 width: 70%;
81 white-space: nowrap;
82 overflow: hidden;
83}
84
85.pref-value {
86 width: 30%;
87 white-space: nowrap;
88 overflow: hidden;
89}
a62af8a9 90
e6947267 91#action-box {
ed351b91
RK
92 background-color: var(--aboutSupport-table-background);
93 border: 1px solid var(--in-content-border-color);
94 color: var(--in-content-text-color);
a62af8a9
RK
95 float: right;
96 margin-top: 2em;
97 margin-bottom: 20px;
98 -moz-margin-start: 20px;
99 -moz-margin-end: 0;
100 padding: 16px;
101 width: 30%;
102}
103
e6947267
RK
104#action-box,
105#reset-box,
106#safe-mode-box {
107 display: none;
108}
109
110#action-box:-moz-dir(rtl) {
a62af8a9
RK
111 float: left;
112}
113
114#reset-box > h3 {
115 margin-top: 0;
116}
117
e6947267 118#action-box > button {
a62af8a9 119 display: block;
a62af8a9 120}
2e88f3cc
RK
121
122.block {
123 display: block;
124}
125
126.hidden {
127 display: none;
128}