blob: 3f08455005b66a24de6b7646018553a4f0a1934a (
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
|
/* 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/. */
:root {
font-family: sans-serif;
margin: 40px auto;
min-width: 30em;
max-width: 60em;
}
.hidden {
display: none;
}
/* Table layout */
table {
width: 100%;
padding-bottom: 2em;
border-spacing: 0;
}
th {
text-align: start;
}
th, td {
border-bottom: 1px solid var(--in-content-border-color);
}
th,
#submitted td {
/* Unsubmitted table already gets spacing from button */
padding-block: 10px;
}
.submit-button,
.crash-link {
float: inline-end;
}
/* Other elements */
.table-title-container {
align-items: center;
display: flex;
justify-content: space-between;
}
.submitting {
background-image: url(chrome://global/skin/icons/loading.png);
background-position: center;
background-repeat: no-repeat;
background-size: 16px;
}
@media (min-resolution: 1.1dppx) {
.submitting {
background-image: url(chrome://global/skin/icons/loading@2x.png);
}
}
.submitting .submit-crash-button-label {
display: none;
}
.failed-to-submit {
color: #ca8695;
}
|