76a34ef37f8faf60beb11ba658089e3f79c92450
[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 .muteButton[noAudio] + .volumeStack {
80   display: none;
81 }
82
83 .fullscreenButton {
84   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 16, 16, 0);
85 }
86
87 .fullscreenButton:hover {
88   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 16, 16, 32, 0);
89 }
90
91 .fullscreenButton[fullscreened] {
92   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 32, 16, 16);
93 }
94
95 .fullscreenButton[fullscreened]:hover {
96   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 16, 32, 32, 16);
97 }
98
99 .volumeControl {
100   width: 32px;
101   opacity: 0;
102 }
103
104 .volumeBackground,
105 .volumeForeground {
106   background-repeat: no-repeat;
107   background-position: center;
108   width: 32px;
109 }
110
111 .volumeBackground {
112   background-image: url("chrome://global/skin/media/volume-empty.png");
113 }
114
115 .volumeForeground {
116   background-image: url("chrome://global/skin/media/volume-full.png");
117   background-clip: content-box;
118 }
119
120 .durationBox {
121   -moz-box-pack: center;
122 }
123
124 .durationLabel {
125   margin-left: -22px; /* 1/2 of scrubber thumb width, for overhang. */
126   padding-left: 8px; /* don't bump into the scrubber bar */
127   padding-top: 0px; /* center vertically with scrubber bar */
128   color: rgba(0,0,0,0.75);
129   font-size: 11px;
130   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
131 }
132
133 .positionLabel {
134   display: none;
135 }
136
137 .backgroundBar {
138   /* margin top/bottom: make bar 8px tall (control height = 28, minus 2 * 10 margin) */
139   /* margin left/right: 1/2 of scrubber thumb width, for overhang. */
140   margin: 10px 22px;
141   background-color: rgba(0,0,0,0.75);
142   border-radius: 2.5px;
143 }
144
145 .bufferBar, .progressBar {
146   /* margin top/bottom: make bar 8px tall (control height = 28, minus 2 * 10 margin) */
147   /* margin left/right: 1/2 of scrubber thumb width, for overhang. */
148   margin: 10px 22px;
149   border: none;
150   background-color: transparent;
151   min-width: 0px;
152   min-height: 0px;
153 }
154
155 /* .progress-bar is an element inside the <progressmeter> implementation. */
156 .bufferBar .progress-bar {
157   /*
158    * Note that this is drawn on top of the .backgroundBar. So although this
159    * has the same background-color specified, the semitransparent
160    * compositing gives it a different visual appearance.
161    */
162   background-color: rgba(255,159,0,0.75);
163   border-radius: 2.5px;
164   -moz-appearance: none;
165 }
166
167 .progressBar .progress-bar {
168   background-color: #008484;
169   border-radius: 2.5px;
170   -moz-appearance: none;
171 }
172
173 /* .scale-slider is an element inside the <scale> implementation. */
174 .scrubber .scale-slider, .volumeControl .scale-slider {
175   /* Hide the default horizontal bar. */
176   background: none;
177   margin: 0;
178 }
179
180 .scrubber .scale-slider {
181   /* abs(margin-top) + margin-bottom + bar height == timeThumb height */
182   margin-top: -10px;
183   margin-bottom: 10px;
184 }
185
186 /* .scale-thumb is an element inside the <scale> implementation. */
187 .scrubber .scale-thumb,
188 .volumeControl .scale-thumb {
189   /* Override the default thumb appearance with a custom image. */
190   background: transparent;
191   border: none !important;
192 }
193
194 .timeThumb {
195   background: url("chrome://global/skin/media/scrubberThumb.png") no-repeat center;
196   min-width: 45px;
197   min-height: 28px;
198   -moz-box-pack: center;
199 }
200
201 .timeThumb[showhours="true"] {
202   background-image: url("chrome://global/skin/media/scrubberThumbWide.png");
203 }
204
205 /*
206 .timeThumb:hover, .timeThumb:active {
207   background-image: url("chrome://global/skin/media/scrubberThumb-hover.png");
208 }
209 */
210
211 .timeLabel {
212   color: rgba(0,0,0,0.75);
213   font-size: 10px;
214   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
215   text-shadow: rgba(255,259,0, 0.3) 0 1px;
216   padding-top: 5px;
217 }
218
219 .statusOverlay {
220   -moz-box-align: center;
221   -moz-box-pack: center;
222   background-color: rgba(0,0,0,0.55);
223 }
224
225 .statusIcon {
226   margin-bottom: 28px; /* same height as .controlBar, to keep icon centered above it */
227   width: 36px;
228   height: 36px;
229 }
230
231 .statusIcon[type="throbber"] {
232   background: url("chrome://communicator/skin/brand/throbber-anim.png") no-repeat center;
233 }
234 /*
235 .statusIcon[type="throbber"][stalled] {
236   background: url("chrome://global/skin/media/stalled.png") no-repeat center;
237 }
238 */
239 .statusIcon[type="error"] {
240   background: url("chrome://global/skin/icons/alert-error.gif") no-repeat center;
241 }
242
243 /* Overlay Play button */
244 .clickToPlay {
245   width: 64px;
246   height: 64px;
247   -moz-box-pack: center;
248   -moz-box-align: center;
249   opacity: 0.7;
250   background-image: url("chrome://global/skin/media/clicktoplay-bgtexture.png"),
251                     url("chrome://global/skin/media/videoClickToPlayButton.svg");
252   background-repeat: repeat, no-repeat;
253   background-position: center, center;
254   background-size: auto, 64px 64px;
255   background-color: hsla(0,0%,10%,.5);
256 }
257 .clickToPlay:hover {
258   opacity: 1;
259 }
260
261 /* Statistics formatting */
262 html|*.statsDiv {
263   position: relative;
264 }
265 html|td {
266   height: 1em;
267   max-height: 1em;
268   padding: 0 2px;
269 }
270 html|table {
271   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
272   font-size: 11px;
273   color: white;
274   text-shadow:
275     -1px -1px 0 #000,
276     1px -1px 0 #000,
277     -1px 1px 0 #000,
278     1px 1px 0 #000;
279   min-width: 100%;
280   background: rgba(68,68,111,.7);
281   table-layout: fixed;
282   border-collapse: collapse;
283   position: absolute;
284 }
285
286 /* CSS Transitions */
287 .clickToPlay {
288   transition-property: opacity, background-size;
289   transition-duration: 400ms, 400ms;
290 }
291 .clickToPlay[fadeout] {
292   background-size: auto, 192px 192px;
293   opacity: 0;
294 }
295 .clickToPlay[fadeout][immediate] {
296   transition-property: opacity, background-size;
297   transition-duration: 0s, 0s;
298 }
299 .controlBar:not([immediate]) {
300   transition-property: opacity;
301   transition-duration: 200ms;
302 }
303 .controlBar[fadeout] {
304   opacity: 0;
305 }
306 .volumeStack:not([immediate]) {
307   transition-property: opacity, margin-top;
308   transition-duration: 200ms, 200ms;
309 }
310 .volumeStack[fadeout] {
311   opacity: 0;
312   margin-top: 0;
313 }
314 .statusOverlay:not([immediate]) {
315   transition-property: opacity;
316   transition-duration: 300ms;
317   transition-delay: 750ms;
318 }
319 .statusOverlay[fadeout] {
320   opacity: 0;
321 }
322
323 /* Error description formatting */
324 .errorLabel {
325   font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
326   font-size: 11px;
327   color: #E7ADE7;
328   text-shadow:
329     -1px -1px 0 #000,
330     1px -1px 0 #000,
331     -1px 1px 0 #000,
332     1px 1px 0 #000;
333   padding: 0 10px;
334   text-align: center;
335 }