make new net/cert error pages work, remove pocket styling and let system add-on do...
[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.column {
60   white-space: nowrap;
61   width: 0px;
62 }
63
64 td {
65   text-align: start;
66 }
67
68 tr:not(:first-child) > td,
69 tr:not(:first-child) > th {
70   text-align: start;
71   border-top: 1px dotted var(--in-content-table-border-dark-color);
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 }
90
91 #action-box {
92   background-color: var(--aboutSupport-table-background);
93   border: 1px solid var(--in-content-border-color);
94   color: var(--in-content-text-color);
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
104 #action-box,
105 #reset-box,
106 #safe-mode-box {
107   display: none;
108 }
109
110 #action-box:-moz-dir(rtl) {
111   float: left;
112 }
113
114 #reset-box > h3 {
115   margin-top: 0;
116 }
117
118 #action-box > button {
119   display: block;
120 }
121
122 .block {
123   display: block;
124 }
125
126 .hidden {
127   display: none;
128 }