blob: d971beba90e4f09c74ea673238c30c0775356863 (
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
|
/* 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/. */
/* Elevation Dialog */
/* Specify the size for the UI so it has a fixed size. 3rd
party themes should typically specify the same values. */
#elevationBox, .update-content {
height: 360px;
width: 700px;
}
/* Remove margin and padding so the inner UI will extend to the edge of the
window. 3rd party themes should typically specify the same values. */
#updates {
margin: 0;
padding: 0;
}
.update-header {
border-bottom: 2px groove ThreeDFace;
background-color: Window;
color: WindowText;
padding: 0 10px;
}
.update-header-box-1 {
padding: 5px 0;
}
.update-header-label {
font-weight: bold;
}
#update-button-box {
margin: 0;
padding: 5px 10px 10px;
}
.update-content {
padding: 10px;
}
.update-buttons-separator {
margin-block: 0 !important;
}
#updateFinishedName {
font-weight: bold;
font-size: larger;
}
/* Update History Window */
update {
border-bottom: 1px dotted #C0C0C0;
}
.update-name {
font-weight: bold;
}
.update-label-column {
align-items: flex-end;
}
.update-type {
font-weight: bold;
color: #990000;
}
.update-status-value,
.update-installedOn-value {
margin-inline-start: 1ch;
}
#historyItems {
height: 200px;
flex: 1 auto;
margin: 1px 5px;
}
#historyItems .update {
padding: 5px;
display: flex;
flex-direction: column;
}
.update-name {
flex: 1;
}
|