|
1 %include ../../global/shared.inc |
|
2 |
|
3 /* General */ |
|
4 /* Specify the size for the wizardpage so the billboard has a fixed size. 3rd |
|
5 party themes should typically specify the same values. */ |
|
6 wizardpage { |
|
7 height: 360px; |
|
8 width: 700px; |
|
9 } |
|
10 |
|
11 /* Remove margin and padding so the billboard will extend to the edge of the |
|
12 window. 3rd party themes should typically specify the same values. */ |
|
13 #updates, .wizard-page-box { |
|
14 margin: 0; |
|
15 padding: 0; |
|
16 } |
|
17 |
|
18 .update-content { |
|
19 padding: 6px 12px 12px 12px; |
|
20 } |
|
21 |
|
22 .wizard-header-box-text { |
|
23 padding: 0; |
|
24 } |
|
25 |
|
26 .wizard-header { |
|
27 margin: 12px 12px 0 12px; |
|
28 } |
|
29 |
|
30 .wizard-buttons-btm { |
|
31 padding: 15px 12px; |
|
32 -moz-binding: url("chrome://global/content/bindings/general.xml#windowdragbox"); |
|
33 } |
|
34 |
|
35 /* Don't use top margin - it can cause a scrollbar on the incompatible page */ |
|
36 .wizard-buttons { |
|
37 padding: 0; |
|
38 -moz-appearance: statusbar; |
|
39 } |
|
40 |
|
41 .wizard-buttons button { |
|
42 -moz-appearance: toolbarbutton; |
|
43 min-height: 22px; |
|
44 margin: 0 6px; |
|
45 padding: 0; |
|
46 text-shadow: @loweredShadow@; |
|
47 } |
|
48 |
|
49 .loadingBox { |
|
50 padding: 3px 5px 3px 5px; |
|
51 } |
|
52 |
|
53 .remoteLoadingThrobber { |
|
54 margin-top: 3px; |
|
55 } |
|
56 |
|
57 .remoteLoadingThrobber[state="loading"] { |
|
58 list-style-image: url("chrome://global/skin/icons/loading_16.png"); |
|
59 } |
|
60 |
|
61 .remoteLoadingThrobber[state="error"] { |
|
62 list-style-image: url("chrome://global/skin/icons/notfound.png"); |
|
63 } |
|
64 |
|
65 #incompatibleListbox, #finishedBackgroundMore, #acceptDeclineLicense { |
|
66 margin-bottom: 6px; |
|
67 } |
|
68 |
|
69 #licenseContent, #incompatibleListbox { |
|
70 -moz-margin-start: 6px; |
|
71 -moz-margin-end: 6px; |
|
72 } |
|
73 |
|
74 .inline-link { |
|
75 color: -moz-nativehyperlinktext; |
|
76 text-decoration: none; |
|
77 } |
|
78 |
|
79 .inline-link:hover { |
|
80 text-decoration: underline; |
|
81 } |
|
82 |
|
83 /* Unsupported Page */ |
|
84 #unsupportedLabel, #unsupportedLinkLabel { |
|
85 -moz-margin-start: 0; |
|
86 -moz-padding-start: 0; |
|
87 } |
|
88 |
|
89 /* Update Found Basic Page */ |
|
90 #updateName, #updateFinishedName { |
|
91 font-weight: bold; |
|
92 font-size: larger; |
|
93 } |
|
94 |
|
95 /* License Page */ |
|
96 #licenseContent { |
|
97 -moz-appearance: listbox; |
|
98 } |
|
99 |
|
100 /* Downloading Page */ |
|
101 #downloadStatusLine { |
|
102 -moz-box-align: center; |
|
103 } |
|
104 |
|
105 #downloadStatus { |
|
106 height: 3em !important; |
|
107 } |
|
108 |
|
109 #downloadStatusProgress { |
|
110 padding-right: 5px; |
|
111 } |
|
112 |
|
113 #pauseButton { |
|
114 list-style-image: url(chrome://mozapps/skin/update/buttons.png); |
|
115 -moz-image-region: rect(48px, 16px, 64px, 0px); |
|
116 -moz-appearance: none; |
|
117 background-color: transparent; |
|
118 border: none; |
|
119 min-height: 16px; |
|
120 min-width: 16px; |
|
121 max-height: 16px; |
|
122 max-width: 16px; |
|
123 margin: 0 1px 0 1px; |
|
124 padding: 0; |
|
125 } |
|
126 |
|
127 /* !Important must be used otherwise this won't immediately take affect */ |
|
128 #pauseButton > .button-box { |
|
129 padding: 0 !important; |
|
130 } |
|
131 |
|
132 #pauseButton:hover { |
|
133 -moz-image-region: rect(48px, 32px, 64px, 16px); |
|
134 } |
|
135 |
|
136 #pauseButton:not([disabled="true"]):hover:active { |
|
137 -moz-image-region: rect(48px, 48px, 64px, 32px); |
|
138 } |
|
139 |
|
140 #pauseButton[disabled="true"] { |
|
141 -moz-image-region: rect(48px, 16px, 64px, 0px); |
|
142 } |
|
143 |
|
144 #pauseButton[paused="true"] { |
|
145 -moz-image-region: rect(16px, 16px, 32px, 0px); |
|
146 } |
|
147 |
|
148 #pauseButton[paused="true"]:hover { |
|
149 -moz-image-region: rect(16px, 32px, 32px, 16px); |
|
150 } |
|
151 |
|
152 #pauseButton[paused="true"]:hover:active { |
|
153 -moz-image-region: rect(16px, 48px, 32px, 32px); |
|
154 } |
|
155 |
|
156 #verificationFailedIcon { |
|
157 margin-left: 5px; |
|
158 list-style-image: url("chrome://global/skin/icons/notfound.png"); |
|
159 } |
|
160 |
|
161 /* Error Page */ |
|
162 #errorReason { |
|
163 margin-top: 1px; |
|
164 margin-bottom: 2px; |
|
165 -moz-margin-start: 6px !important; |
|
166 -moz-margin-end: 5px; |
|
167 font-weight: bold; |
|
168 } |
|
169 |
|
170 /* Update History Window */ |
|
171 update { |
|
172 border-bottom: 1px dotted #C0C0C0; |
|
173 } |
|
174 |
|
175 .update-name { |
|
176 font-weight: bold; |
|
177 } |
|
178 |
|
179 .update-label-column { |
|
180 -moz-box-align: end; |
|
181 } |
|
182 |
|
183 .update-type { |
|
184 font-weight: bold; |
|
185 color: #990000; |
|
186 } |
|
187 |
|
188 #historyItems { |
|
189 -moz-appearance: listbox; |
|
190 height: 200px; |
|
191 margin: 1px 5px 4px 5px; |
|
192 } |
|
193 |
|
194 #historyItems > scrollbox { |
|
195 margin-bottom: 1px; |
|
196 } |