d9acf3614a16c6c782f4a9708e8a410ca8b03783
[themes.git] / LCARStrek / global / media / videocontrols.css
1 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2 @namespace html url("http://www.w3.org/1999/xhtml");
3
4 .controlBar {
5   height: 28px;
6   background-color: rgba(156,156,255,0.75);
7 }
8
9 .playButton,
10 .muteButton,
11 .fullscreenButton {
12   background-color: transparent;
13   background-repeat: no-repeat;
14   background-position: center;
15   margin: 0px;
16   padding: 0px;
17   border: none;
18   min-height: 28px;
19   min-width: 28px;
20 }
21
22 .playButton:hover,
23 .muteButton:hover,
24 .fullscreenButton:hover {
25   background-color: rgba(255,207,0,0.75);
26 }
27
28 .playButton:hover:active,
29 .muteButton:hover:active,
30 .fullscreenButton:hover:active {
31   background-color: rgba(255,159,0,0.75);
32 }
33
34 .playButton:-moz-focusring > .button-box,
35 .muteButton:-moz-focusring > .button-box,
36 .fullscreenButton:-moz-focusring > .button-box {
37   border: 1px dotted rgba(0,0,0,0.75);
38 }
39
40 .playButton {
41   background-image: url("chrome://global/skin/media/pauseButton.png");
42   margin-right: -22px; /* 1/2 of scrubber thumb width, for overhang. */
43   position: relative; /* Trick to work around negative margin interfering with clicking on the button. */
44 }
45
46 .playButton:hover {
47   background-image: url("chrome://global/skin/media/pauseButton-hover.png");
48 }
49
50 .playButton[paused] {
51   background-image: url("chrome://global/skin/media/playButton.png");
52 }
53
54 .playButton[paused]:hover {
55   background-image: url("chrome://global/skin/media/playButton-hover.png");
56 }
57
58 .muteButton {
59   background-image: url("chrome://global/skin/media/muteButton.png");
60   min-width: 33px;
61 }
62
63 .muteButton:hover {
64   background-image: url("chrome://global/skin/media/muteButton-hover.png");
65 }
66
67 .muteButton[muted] {
68   background-image: url("chrome://global/skin/media/unmuteButton.png");
69 }
70
71 .muteButton[muted]:hover {
72   background-image: url("chrome://global/skin/media/unmuteButton-hover.png");
73 }
74
75 .muteButton[noAudio] {
76   background-image: url("chrome://global/skin/media/noAudio.png");
77 }
78
79 .fullscreenButton {
80   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 16, 16, 0);
81 }
82
83 .fullscreenButton:hover {
84   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 16, 16, 32, 0);
85 }
86
87 .fullscreenButton[fullscreened] {
88   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 32, 16, 16);
89 }
90
91 .fullscreenButton[fullscreened]:hover {
92   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 16, 32, 32, 16);
93 }
94
95 .volumeStack {
96   width: 28px;
97   height: 70px;
98   background-color: rgba(156,156,255,0.74);
99   /* use negative margin to place stack over the mute button to its left. */
100   margin: -70px 3px 28px -31px;
101   overflow: hidden; /* crop it when sliding down, don't grow the control bar */
102   position: relative; /* Trick to work around negative margin interfering with dragging the thumb. */
103   padding-top: 6px;
104   border-radius: 3px 3px 0 0;
105 }
106
107 .volumeControl {
108   min-height: 64px;
109 }
110
111 /* .scale-thumb is an element inside the <scale> implementation. */
112 .volumeControl .scale-thumb {
113   /* Override the default thumb appearance with a custom image. */
114   -moz-appearance: none;
115   background: url("chrome://global/skin/media/volumeThumb.png") no-repeat center;
116   border: none !important;
117   min-width: 20px;
118   min-height: 10px;
119 }
120 .volumeControl .scale-thumb:hover, .volumeControl .scale-thumb:active {
121   background-image: url("chrome://global/skin/media/volumeThumb-hover.png");
122 }
123
124 .volumeBackgroundBar {
125   /* margin left/right: make bar 8px wide (control width = 28, minus 2 * 10 margin) */
126   margin: 0px 10px;
127   background-color: rgba(0,0,0,0.5);
128   border-radius: 2.5px;
129 }
130
131 .durationBox {
132   -moz-box-pack: center;
133 }
134
135 .durationLabel {
136   margin-left: -22px; /* 1/2 of scrubber thumb width, for overhang. */
137   padding-left: 8px; /* don't bump into the scrubber bar */
138   padding-top: 0px; /* center vertically with scrubber bar */
139   color: rgba(0,0,0,0.75);
140   font-size: 11px;
141   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
142 }
143
144 .positionLabel {
145   display: none;
146 }
147
148 .backgroundBar {
149   /* margin top/bottom: make bar 8px tall (control height = 28, minus 2 * 10 margin) */
150   /* margin left/right: 1/2 of scrubber thumb width, for overhang. */
151   margin: 10px 22px;
152   background-color: rgba(0,0,0,0.75);
153   border-radius: 2.5px;
154 }
155
156 .bufferBar, .progressBar {
157   /* margin top/bottom: make bar 8px tall (control height = 28, minus 2 * 10 margin) */
158   /* margin left/right: 1/2 of scrubber thumb width, for overhang. */
159   margin: 10px 22px;
160   border: none;
161   background-color: transparent;
162   min-width: 0px;
163   min-height: 0px;
164 }
165
166 /* .progress-bar is an element inside the <progressmeter> implementation. */
167 .bufferBar .progress-bar {
168   /*
169    * Note that this is drawn on top of the .backgroundBar. So although this
170    * has the same background-color specified, the semitransparent
171    * compositing gives it a different visual appearance.
172    */
173   background-color: rgba(255,159,0,0.75);
174   border-radius: 2.5px;
175   -moz-appearance: none;
176 }
177
178 .progressBar .progress-bar {
179   background-color: #008484;
180   border-radius: 2.5px;
181   -moz-appearance: none;
182 }
183
184 /* .scale-slider is an element inside the <scale> implementation. */
185 .scrubber .scale-slider, .volumeControl .scale-slider {
186   /* Hide the default horizontal bar. */
187   background: none;
188   margin: 0;
189 }
190
191 .scrubber .scale-slider {
192   /* abs(margin-top) + margin-bottom + bar height == timeThumb height */
193   margin-top: -10px;
194   margin-bottom: 10px;
195 }
196
197 /* .scale-thumb is an element inside the <scale> implementation. */
198 .scrubber .scale-thumb {
199   /* Override the default thumb appearance with a custom image. */
200   background: transparent;
201   border: none !important;
202 }
203
204 .timeThumb {
205   background: url("chrome://global/skin/media/scrubberThumb.png") no-repeat center;
206   min-width: 45px;
207   min-height: 28px;
208   -moz-box-pack: center;
209 }
210
211 .timeThumb[showhours="true"] {
212   background-image: url("chrome://global/skin/media/scrubberThumbWide.png");
213 }
214
215 /*
216 .timeThumb:hover, .timeThumb:active {
217   background-image: url("chrome://global/skin/media/scrubberThumb-hover.png");
218 }
219 */
220
221 .timeLabel {
222   color: rgba(0,0,0,0.75);
223   font-size: 10px;
224   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
225   text-shadow: rgba(255,259,0, 0.3) 0 1px;
226   padding-top: 5px;
227 }
228
229 .statusOverlay {
230   -moz-box-align: center;
231   -moz-box-pack: center;
232   background-color: rgba(0,0,0,0.55);
233 }
234
235 .statusIcon {
236   margin-bottom: 28px; /* same height as .controlBar, to keep icon centered above it */
237   width: 36px;
238   height: 36px;
239 }
240
241 .statusIcon[type="throbber"] {
242   background: url("chrome://communicator/skin/brand/throbber-anim.png") no-repeat center;
243 }
244 /*
245 .statusIcon[type="throbber"][stalled] {
246   background: url("chrome://global/skin/media/stalled.png") no-repeat center;
247 }
248 */
249 .statusIcon[type="error"] {
250   background: url("chrome://global/skin/icons/alert-error.gif") no-repeat center;
251 }
252
253 /* Overlay Play button */
254 .clickToPlay {
255   width: 64px;
256   height: 64px;
257   -moz-box-pack: center;
258   -moz-box-align: center;
259   opacity: 0.7;
260   background-image: url("chrome://global/skin/media/clicktoplay-bgtexture.png"),
261                     url("chrome://global/skin/media/videoClickToPlayButton.svg");
262   background-repeat: repeat, no-repeat;
263   background-position: center, center;
264   background-size: auto, 64px 64px;
265   background-color: hsla(0,0%,10%,.5);
266 }
267 .clickToPlay:hover {
268   opacity: 1;
269 }
270
271 /* Statistics formatting */
272 html|*.statsDiv {
273   position: relative;
274 }
275 html|td {
276   height: 1em;
277   max-height: 1em;
278   padding: 0 2px;
279 }
280 html|table {
281   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
282   font-size: 11px;
283   color: white;
284   text-shadow:
285     -1px -1px 0 #000,
286     1px -1px 0 #000,
287     -1px 1px 0 #000,
288     1px 1px 0 #000;
289   min-width: 100%;
290   background: rgba(68,68,111,.7);
291   table-layout: fixed;
292   border-collapse: collapse;
293   position: absolute;
294 }
295
296 /* CSS Transitions */
297 .clickToPlay {
298   transition-property: opacity, background-size;
299   transition-duration: 400ms, 400ms;
300 }
301 .clickToPlay[fadeout] {
302   background-size: auto, 192px 192px;
303   opacity: 0;
304 }
305 .clickToPlay[fadeout][immediate] {
306   transition-property: opacity, background-size;
307   transition-duration: 0s, 0s;
308 }
309 .controlBar:not([immediate]) {
310   transition-property: opacity;
311   transition-duration: 200ms;
312 }
313 .controlBar[fadeout] {
314   opacity: 0;
315 }
316 .volumeStack:not([immediate]) {
317   transition-property: opacity, margin-top;
318   transition-duration: 200ms, 200ms;
319 }
320 .volumeStack[fadeout] {
321   opacity: 0;
322   margin-top: 0;
323 }
324 .statusOverlay:not([immediate]) {
325   transition-property: opacity;
326   transition-duration: 300ms;
327   transition-delay: 750ms;
328 }
329 .statusOverlay[fadeout] {
330   opacity: 0;
331 }
332
333 /* Error description formatting */
334 .errorLabel {
335   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
336   font-size: 11px;
337   color: #E7ADE7;
338   text-shadow:
339     -1px -1px 0 #000,
340     1px -1px 0 #000,
341     -1px 1px 0 #000,
342     1px 1px 0 #000;
343   padding: 0 10px;
344   text-align: center;
345 }