2009-01-19 14:51:38 -08:00
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
.scrubber, .volumeControl {
|
2009-01-24 21:21:32 -08:00
|
|
|
-moz-binding: url("chrome://global/content/bindings/videocontrols.xml#suppressChangeEvent");
|
|
|
|
}
|
2009-04-23 00:33:35 -07:00
|
|
|
|
|
|
|
.scrubber .scale-thumb {
|
|
|
|
-moz-binding: url("chrome://global/content/bindings/videocontrols.xml#timeThumb");
|
|
|
|
}
|
2009-05-19 02:42:29 -07:00
|
|
|
|
2009-05-22 16:03:47 -07:00
|
|
|
.playButton, .muteButton,
|
|
|
|
.scrubber .scale-slider, .volumeControl .scale-slider {
|
|
|
|
-moz-user-focus: none;
|
|
|
|
}
|
|
|
|
|
2009-05-19 02:42:29 -07:00
|
|
|
.mediaControlsFrame {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
2010-01-08 17:06:00 -08:00
|
|
|
|
|
|
|
/* CSS Transitions
|
|
|
|
*
|
|
|
|
* These are overriden by the default theme; the rules here just
|
|
|
|
* provide a fallback to drive the required transitionend event
|
|
|
|
* (in case a 3rd party theme does not provide transitions).
|
|
|
|
*/
|
|
|
|
.controlBar:not([immediate]) {
|
|
|
|
-moz-transition-property: opacity;
|
|
|
|
-moz-transition-duration: 1ms;
|
|
|
|
}
|
|
|
|
.controlBar[fadeout] {
|
|
|
|
opacity: 0.0;
|
|
|
|
}
|
|
|
|
.volumeStack:not([immediate]) {
|
|
|
|
-moz-transition-property: opacity, margin-top;
|
|
|
|
-moz-transition-duration: 1ms, 1ms;
|
|
|
|
}
|
|
|
|
.volumeStack[fadeout] {
|
|
|
|
opacity: 0.0;
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
.statusOverlay:not([immediate]) {
|
|
|
|
-moz-transition-property: opacity;
|
|
|
|
-moz-transition-duration: 1ms;
|
|
|
|
-moz-transition-delay: 750ms;
|
|
|
|
}
|
|
|
|
.statusOverlay[fadeout] {
|
|
|
|
opacity: 0.0;
|
|
|
|
}
|