sync both themes with suite classic theme changes in SeaMonkey 2.46/2.47 cycles
[themes.git] / EarlyBlue / global / aboutSupport.css
... / ...
CommitLineData
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/. */
4
5html {
6 --aboutSupport-table-background: #CCD0DD;
7 background-color: var(--in-content-page-background);
8}
9
10body {
11 margin: 40px 48px;
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
26button {
27 margin-inline-start: 0;
28 margin-inline-end: 8px;
29}
30
31table {
32 background-color: var(--aboutSupport-table-background);
33 color: var(--in-content-text-color);
34 text-align: start;
35 width: 100%;
36 border: 1px solid var(--in-content-border-color);
37 border-spacing: 0px;
38}
39
40th, td {
41 padding: 4px;
42}
43
44th:not(:first-child),
45td:not(:first-child) {
46 border-left: 1px dotted var(--in-content-border-color);
47}
48
49thead th {
50 text-align: center;
51}
52
53th {
54 text-align: start;
55 background-color: var(--in-content-table-header-background);
56 color: var(--in-content-selected-text);
57}
58
59th.title-column {
60 white-space: nowrap;
61 width: 0px;
62 font-size: medium;
63}
64
65th.column {
66 white-space: nowrap;
67 width: 0px;
68}
69
70td {
71 text-align: start;
72}
73
74tr:not(:first-child) > td,
75tr:not(:first-child) > th {
76 text-align: start;
77 border-top: 1px dotted var(--in-content-table-border-dark-color);
78}
79
80.prefs-table {
81 width: 100%;
82 table-layout: fixed;
83}
84
85.pref-name {
86 width: 70%;
87 white-space: nowrap;
88 overflow: hidden;
89}
90
91.pref-value {
92 width: 30%;
93 white-space: nowrap;
94 overflow: hidden;
95}
96
97#action-box {
98 background-color: var(--aboutSupport-table-background);
99 border: 1px solid var(--in-content-border-color);
100 color: var(--in-content-text-color);
101 float: right;
102 margin-top: 2em;
103 margin-bottom: 20px;
104 margin-inline-start: 20px;
105 margin-inline-end: 0;
106 padding: 16px;
107 width: 30%;
108}
109
110#action-box,
111#reset-box,
112#safe-mode-box {
113 display: none;
114}
115
116#action-box:dir(rtl) {
117 float: left;
118}
119
120#reset-box > h3 {
121 margin-top: 0;
122}
123
124#action-box > button {
125 display: block;
126}
127
128#verify-place-result {
129 max-height: 200px;
130 overflow: auto;
131}
132
133.block {
134 display: block;
135}
136
137.hidden {
138 display: none;
139}