update EarlyBlue and LCARStrek to 1.9.1 toolkit changes up to 2009-01-25
[themes.git] / EarlyBlue / global / media / videocontrols.css
... / ...
CommitLineData
1@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3.controlBar {
4 height: 24px;
5 background-color: rgba(102,102,153,0.75);
6}
7
8.playButton, .muteButton {
9 /* Remove the usual button appearance and styling */
10 margin: 0px;
11 padding: 0px;
12 border: none;
13 min-height: 24px;
14 min-width: 24px;
15}
16
17.playButton {
18 background: url("chrome://global/skin/media/pauseButton.png") no-repeat center;
19}
20.playButton[paused="true"] {
21 background: url("chrome://global/skin/media/playButton.png") no-repeat center;
22}
23
24.muteButton {
25 background: url("chrome://global/skin/media/muteButton.png") no-repeat center;
26}
27.muteButton[muted="true"] {
28 background: url("chrome://global/skin/media/unmuteButton.png") no-repeat center;
29}