1/* General */
2/* Specify the size for the wizardpage so the billboard has a fixed size. 3rd
3   party themes should typically specify the same values. */
4wizardpage {
5  height: 360px;
6  width: 700px;
7}
8
9/* Remove margin and padding so the billboard will extend to the edge of the
10   window. 3rd party themes should typically specify the same values. */
11#updates, .wizard-page-box {
12  margin: 0;
13  padding: 0;
14}
15
16.update-header {
17  padding: 0px 10px;
18}
19
20.update-content {
21  padding: 10px;
22}
23
24.wizard-buttons-separator {
25  margin-top: 0 !important;
26}
27
28.inline-link {
29  color: -moz-nativehyperlinktext;
30  text-decoration: none;
31}
32
33.inline-link:hover {
34  text-decoration: underline;
35}
36
37/* Unsupported Page */
38#unsupportedLabel, #unsupportedLinkLabel {
39  margin-inline-start: 0;
40  padding-inline-start: 0;
41}
42
43/* Update Found Basic Page */
44#updateName, #updateFinishedName {
45  font-weight: bold;
46  font-size: larger;
47}
48
49/* Downloading Page */
50#downloadStatusLine {
51  -moz-box-align: center;
52}
53
54#downloadStatus {
55  height: 3em !important;
56}
57
58#downloadStatusProgress {
59  padding-right: 5px;
60}
61
62#pauseButton {
63  list-style-image: url("moz-icon://stock/gtk-media-pause?size=menu");
64  -moz-appearance: none;
65  background-color: transparent;
66  border: none;
67  min-width: 0;
68  min-height: 0;
69  margin: 0;
70  padding: 0;
71}
72
73/* !Important must be used otherwise this won't immediately take affect */
74#pauseButton > .button-box {
75  padding: 0 !important;
76}
77
78#pauseButton[disabled="true"] {
79  list-style-image: url("moz-icon://stock/gtk-media-pause?size=menu&state=disabled");
80}
81
82#pauseButton[paused="true"] {
83  list-style-image: url("moz-icon://stock/gtk-media-play?size=menu");
84}
85
86#pauseButton[paused="true"][disabled="true"] {
87  list-style-image: url("moz-icon://stock/gtk-media-play?size=menu&state=disabled");
88}
89
90#verificationFailedIcon {
91  margin-left: 5px;
92  list-style-image: url("moz-icon://stock/gtk-dialog-warning?size=menu");
93}
94
95/* Error Page */
96#errorReason {
97  margin-top: 1px;
98  margin-bottom: 2px;
99  margin-inline-start: 6px !important;
100  margin-inline-end: 5px;
101  font-weight: bold;
102}
103
104/* Update History Window */
105update {
106  border-bottom: 1px dotted #C0C0C0;
107}
108
109.update-name {
110  font-weight: bold;
111}
112
113.update-label-column {
114  -moz-box-align: end;
115}
116
117.update-type {
118  font-weight: bold;
119  color: #990000;
120}
121
122#historyItems {
123  -moz-appearance: listbox;
124  height: 200px;
125  margin: 1px 5px 4px 5px;
126}
127
128#historyItems > scrollbox {
129  margin-bottom: 1px;
130}
131