blob: 0afd7407a803edd05dee942cb7f5c6250498c621 (
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
106
107
108
109
110
|
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
body {
margin-bottom: 6rem;
}
.body > div {
max-width: 800px;
}
h3 {
color: var(--fieldset-header-ink);
margin-bottom: 0;
}
.supportEntry {
display: flex;
margin-block: 1em;
}
:root.mobile .supportEntry {
flex-direction: column;
}
.supportEntry > * {
min-width: 6em;
}
.supportEntry > div:first-of-type {
flex-grow: 1;
}
:root:not(.mobile) .supportEntry > div:first-of-type {
margin-inline-end: 2em;
}
.supportEntry h3 {
margin: 1em 0;
}
.e > .supportEntry {
flex-direction: column;
}
.e > .supportEntry > div:not(:first-of-type) {
margin-top: 1em;
}
.e > .supportEntry select {
min-width: 50%;
max-width: calc(100% - 1em);
}
body:not(.filterIssue) .body > div.e {
display: none;
}
body.filterIssue .body > div:not(.e) {
display: none;
}
body.filterIssue #moreButton {
display: none;
}
body[data-should-update-lists]:not(.updated) .e .createEntry {
opacity: 0.25;
pointer-events: none;
}
body:not([data-should-update-lists]) .shouldUpdate {
display: none;
}
body.updating {
pointer-events: none;
}
body.updating button {
filter: grayscale(1);
opacity: 0.5;
}
body.updated .shouldUpdate button {
display: none;
}
body.updating .shouldUpdate button .fa-icon svg {
animation: spin 1s linear infinite;
transform-origin: 50%;
}
body .shouldUpdate .updated {
align-self: center;
}
body:not(.updated) .shouldUpdate .updated {
display: none;
}
button {
align-self: center;
}
span[data-url] {
color: var(--link-ink);
cursor: pointer;
}
#showSupportInfo {
cursor: pointer;
}
body.redacted #redactButton {
display: none;
}
#unredactButton {
display: none;
}
body.redacted #unredactButton {
display: inline;
}
.cm-string.cm-property {
color: black;
}
|