support new help button and update deck in prefs
[themes.git] / LCARStrek / global / aboutProfiles.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   --aboutProfiles-table-background: #000000;
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 button {
19   margin-inline-start: 0;
20   margin-inline-end: 8px;
21 }
22
23 table {
24   background-color: var(--aboutProfiles-table-background);
25   color: var(--in-content-text-color);
26   font: message-box;
27   text-align: start;
28   width: 100%;
29   border: 1px solid var(--in-content-border-color);
30   border-spacing: 0px;
31 }
32
33 th, td {
34   border: 1px solid var(--in-content-border-color);
35   padding: 4px;
36   text-align: start;
37 }
38
39 th {
40   background-color: var(--in-content-table-header-background);
41   color: var(--in-content-selected-text);
42 }
43
44 th.column {
45   white-space: nowrap;
46   width: 0px;
47 }
48
49 td {
50   border-color: var(--in-content-table-border-dark-color);
51   unicode-bidi: plaintext; /* Make sure file paths will be LTR */
52 }
53
54 #action-box {
55   background-color: var(--aboutProfiles-table-background);
56   border: 1px solid var(--in-content-border-color);
57   color: var(--in-content-text-color);
58   float: right;
59   margin-top: 2em;
60   margin-bottom: 20px;
61   margin-inline-start: 20px;
62   margin-inline-end: 0;
63   padding: 16px;
64   width: 30%;
65 }
66
67 #action-box:dir(rtl) {
68   float: left;
69 }