summaryrefslogtreecommitdiff
path: root/src/chrome/mozapps/aboutProfiles.css
blob: 051112f37ed521e00c6efecccf7c6c4ef312c214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

html {
  --aboutProfiles-table-background: rgb(0,0,0);
  background-color: var(--in-content-frame-background); /* was var(--in-content-page-background) --johnGraciliano */
  padding: 48px 48px;
}

body {
  margin: auto;
}

#body {
  box-sizing: content-box;
  max-width: 90em;
  background-color: var(--in-content-page-background);
  color: #fff;
  border: 1px solid var(--in-content-main-border-color);
  border-radius: 10px;
  padding: 3em 30px;
}

.page-subtitle {
  margin-bottom: 3em;
}

button {
  margin-inline-start: 0;
  margin-inline-end: 8px;
}

table {
  background-color: var(--aboutProfiles-table-background);
  color: var(--in-content-text-color);
  font: message-box;
  text-align: start;
  width: 100%;
  border: 1px solid var(--in-content-border-color);
  border-spacing: 0px;
}

th, td {
  border-width: 0;
  border-style: solid;
  padding: 4px;
  text-align: start;
}

th {
  background-color: var(--in-content-table-header-background);
  color: var(--in-content-selected-text);
  border-color: var(--in-content-border-color);
}

th.column {
  white-space: nowrap;
  width: 0px;
}

td {
  border-color: var(--in-content-table-border-dark-color);
}

th:not(:last-child),
td:not(:last-child){
  border-inline-end-width: 1px;
  border-inline-end-width: 1px;
}

tr:not(:last-child) > th,
tr:not(:last-child) > td{
  border-bottom-width: 1px;
}

thead + tbody > tr:first-child > td{
  border-top:  1px solid var(--in-content-border-color);
}

table button {
  padding-top: 1px;
  padding-bottom: 1px;
  margin: 1px;
  height: auto;
  min-height: unset;
  line-height: normal;
}

#action-box {
  background-color: var(--aboutProfiles-table-background);
  border: 1px solid var(--in-content-border-color);
  color: var(--in-content-text-color);
  float: right;
  margin-top: 2em;
  margin-bottom: 20px;
  margin-inline-start: 20px;
  margin-inline-end: 0;
  padding: 16px;
  width: 30%;
}

#action-box:-moz-dir(rtl) {
  float: left;
}