second part of syncing LCARStrek with Firefox 45-48 windows theme changes
[themes.git] / EarlyBlue / global / aboutSupport.css
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
5 html {
6   --aboutSupport-table-background: #CCD0DD;
7   background-color: var(--in-content-page-background);
8 }
9
10 body {
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
26 button {
27   -moz-margin-start: 0;
28   -moz-margin-end: 8px;
29 }
30
31 table {
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
40 th, td {
41   padding: 4px;
42 }
43
44 th:not(:first-child),
45 td:not(:first-child) {
46   border-left: 1px dotted var(--in-content-border-color);
47 }
48
49 thead th {
50   text-align: center;
51 }
52
53 th {
54   text-align: start;
55   background-color: var(--in-content-table-header-background);
56   color: var(--in-content-selected-text);
57 }
58
59 th.title-column {
60   white-space: nowrap;
61   width: 0px;
62   font-size: medium;
63 }
64
65 th.column {
66   white-space: nowrap;
67   width: 0px;
68 }
69
70 td {
71   text-align: start;
72 }
73
74 tr:not(:first-child) > td,
75 tr: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   -moz-margin-start: 20px;
105   -moz-margin-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:-moz-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 .block {
129   display: block;
130 }
131
132 .hidden {
133   display: none;
134 }