sync both themes with Mozilla 11 toolkit winstripe changes
[themes.git] / EarlyBlue / global / media / videocontrols.css
index 00faa807028be834e9200bb55398ad8e4be7358c..c76db36036af094037bded1dc2ff5030004ce585 100644 (file)
 .playButton {
   background-image: url("chrome://global/skin/media/pauseButton.png");
 }
-.playButton[paused="true"] {
+.playButton[paused] {
   background-image: url("chrome://global/skin/media/playButton.png");
 }
 
 .muteButton {
   background-image: url("chrome://global/skin/media/muteButton.png");
 }
-.muteButton[muted="true"] {
+.muteButton[muted] {
   background-image: url("chrome://global/skin/media/unmuteButton.png");
 }
 
+.fullscreenButton {
+  background-color: transparent;
+  list-style-image: url("chrome://global/skin/media/fullscreenButton.png");
+  -moz-image-region: rect(0px, 16px, 16px, 0px);
+  -moz-appearance: none;
+  margin: 0;
+  padding: 0;
+  min-height: 28px;
+  min-width: 28px;
+  border: none;
+}
+
+.fullscreenButton[fullscreened] {
+  -moz-image-region: rect(0px, 32px, 16px, 16px);
+}
+
 .volumeStack {
   width: 28px;
   height: 70px;
@@ -238,3 +254,17 @@ html|table {
 .statusOverlay[fadeout] {
   opacity: 0;
 }
+
+/* Error description formatting */
+.errorLabel {
+  font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
+  font-size: 11px;
+  color: #CCD0DD;
+  text-shadow:
+    -1px -1px 0 #000,
+    1px -1px 0 #000,
+    -1px 1px 0 #000,
+    1px 1px 0 #000;
+  padding: 0 10px;
+  text-align: center;
+}