update both themes for toolkit winstripe changes in Mozilla 21 cycle
authorRobert Kaiser <robert@widebook.box.kairo.at>
Sun, 7 Apr 2013 19:50:49 +0000 (21:50 +0200)
committerRobert Kaiser <robert@widebook.box.kairo.at>
Sun, 7 Apr 2013 19:50:49 +0000 (21:50 +0200)
EarlyBlue/global/findBar.css
EarlyBlue/global/global.css
EarlyBlue/global/media/TopLevelImageDocument.css
EarlyBlue/global/media/videocontrols.css
EarlyBlue/mozapps/plugins/contentPluginClickToPlayPlain.png [new file with mode: 0644]
EarlyBlue/mozapps/plugins/pluginProblem.css
LCARStrek/global/findBar.css
LCARStrek/global/global.css
LCARStrek/global/media/TopLevelImageDocument.css
LCARStrek/global/media/videocontrols.css
LCARStrek/mozapps/plugins/pluginProblem.css

index 63764a9d19a604467d581628af23fe7028429e6d..52edacef17f2ced10bf45efddd37747504b31009 100644 (file)
@@ -8,6 +8,18 @@ findbar {
   border-top: 1px solid #666699;
   border-bottom: 1px solid transparent;
   min-width: 1px;
+  transition-property: margin-bottom, opacity, visibility;
+  transition-duration: 150ms, 150ms, 0s;
+  transition-timing-function: ease-in-out, ease-in-out, linear;
+}
+
+findbar[hidden] {
+  /* Override display:none to make the transition work. */
+  display: -moz-box;
+  visibility: collapse;
+  margin-bottom: -1em;
+  opacity: 0;
+  transition-delay: 0s, 0s, 150ms;
 }
 
 /* find-next button */
index 1695c405430a0d5dbff733bcf015b2e5e77e933e..a231448965d2f4616c2d895d4a10b3b0561e7b7a 100644 (file)
@@ -262,10 +262,13 @@ description {
 
 .text-link {
   color: blue;
-  text-decoration: underline;
   cursor: pointer;
 }
 
+.text-link:hover {
+  text-decoration: underline;
+}
+
 .text-link:-moz-focusring {
   /* Don't specify the outline-color, we should always use initial value. */
   outline: 1px dotted;
index aef3a455a20322d331671fec2307f34edbf588f1..2ed8b007b4d7905a5dc9acd6e5ecf6c197e1955e 100644 (file)
@@ -12,4 +12,8 @@
     background-color: #fff;
     color: #222;
   }
+
+  .completeRotation {
+    transition: transform 0.3s ease 0s;
+  }
 }
index 84c1145e3731914c62e155b4ad06f6fd16c09ea5..51276bd56295fef27cb17ed4920caaad878a4bf7 100644 (file)
@@ -6,35 +6,34 @@
   background-color: rgba(102,102,153,0.75);
 }
 
-.playButton, .muteButton {
-  /* Remove the usual button appearance and styling */
+.playButton,
+.muteButton,
+.fullscreenButton {
+  background-color: transparent;
+  background-repeat: no-repeat;
+  background-position: center;
   margin: 0px;
   padding: 0px;
   border: none;
   min-height: 28px;
-  background-color: transparent;
-  background-repeat: no-repeat;
-  background-position: center center;
-}
-.playButton {
   min-width: 28px;
-  margin-right: -22px; /* 1/2 of scrubber thumb width, for overhang. */
-  position: relative; /* Trick to work around negative margin interfering with clicking on the button. */
-}
-.muteButton {
-  min-width: 33px;
 }
 
 .playButton {
   background-image: url("chrome://global/skin/media/pauseButton.png");
+  margin-right: -22px; /* 1/2 of scrubber thumb width, for overhang. */
+  position: relative; /* Trick to work around negative margin interfering with clicking on the button. */
 }
+
 .playButton[paused] {
   background-image: url("chrome://global/skin/media/playButton.png");
 }
 
 .muteButton {
   background-image: url("chrome://global/skin/media/muteButton.png");
+  min-width: 33px;
 }
+
 .muteButton[muted] {
   background-image: url("chrome://global/skin/media/unmuteButton.png");
 }
 }
 
 .fullscreenButton {
-  background: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 16, 16, 0) no-repeat center;
-  margin: 0;
-  padding: 0;
-  min-height: 28px;
-  min-width: 28px;
-  border: none;
+  background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 16, 16, 0);
 }
 
 .fullscreenButton[fullscreened] {
 }
 
 .timeThumb[showhours="true"] {
-  background: url("chrome://global/skin/media/scrubberThumbWide.png") no-repeat center;
+  background-image: url("chrome://global/skin/media/scrubberThumbWide.png");
 }
 
 /*
diff --git a/EarlyBlue/mozapps/plugins/contentPluginClickToPlayPlain.png b/EarlyBlue/mozapps/plugins/contentPluginClickToPlayPlain.png
new file mode 100644 (file)
index 0000000..a02a59c
Binary files /dev/null and b/EarlyBlue/mozapps/plugins/contentPluginClickToPlayPlain.png differ
index cd5996275b58f2906df5dea1bd24c06a56867b63..08d4838ca78106b73abbbdf570781fd14fff4c71 100644 (file)
@@ -1,3 +1,7 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
 @namespace html url(http://www.w3.org/1999/xhtml);
 
 /* These styles affect only the bound element, not other page content. */
   box-shadow: inset 0 1px 5px #808080;
   padding: 5px;
   -moz-user-select: none;
+  position: relative;
+}
+
+.hoverBox {
+  padding: 5px;
 }
 
 html|a {
@@ -18,10 +27,13 @@ html|a {
 }
 
 .icon {
-  min-width: 48px;
-  min-height: 48px;
+  display: inline-block;
+  width: 48px;
+  height: 48px;
   background-position: center;
   background-repeat: no-repeat;
+  border: none;
+  background-color: transparent;
 }
 :-moz-type-unsupported .icon,
 :-moz-type-unsupported-platform .icon {
@@ -30,11 +42,20 @@ html|a {
 :-moz-type-unsupported .icon[status="ready"] {
   background-image: url("chrome://mozapps/skin/plugins/contentPluginDownload.png");
 }
-:-moz-handler-clicktoplay .icon,
 :-moz-handler-vulnerable-updatable .icon,
 :-moz-handler-vulnerable-no-update .icon {
   background-image: url("chrome://mozapps/skin/plugins/contentPluginClickToPlay.png");
 }
+
+:-moz-handler-clicktoplay .icon {
+  background-image: url("chrome://mozapps/skin/plugins/contentPluginClickToPlayPlain.png");
+  background-position: 0 0;
+}
+:-moz-handler-clicktoplay .hoverBox:hover .icon,
+:-moz-handler-clicktoplay .hoverBox:hover:active .icon {
+ background-position: -48px 0;
+}
+
 :-moz-handler-disabled .icon {
   background-image: url("chrome://mozapps/skin/plugins/contentPluginDisabled.png");
 }
@@ -52,10 +73,12 @@ html|a {
 }
 
 .msg {
-  font-size: 12px;
   cursor: default;
+  width: 100%;
 }
 
+:-moz-handler-clicktoplay .mainBox,
+:-moz-handler-clicktoplay .icon,
 :-moz-handler-clicktoplay .msgClickToPlay,
 :-moz-handler-vulnerable-updatable .msgClickToPlay,
 :-moz-handler-vulnerable-no-update .msgClickToPlay {
@@ -78,9 +101,40 @@ html|a {
   min-height: 19px; /* height of biggest line (with throbber) */
 }
 
-.msgBottomLinks {
-  padding-left: 2px;
-  padding-right: 2px;
+.submitComment {
+  width: 340px;
+  height: 70px;
+  padding: 5px;
+  border: none;
+  border-radius: 5px;
+  resize: none;
+  font-family: inherit;
+  font-size: inherit;
+}
+
+.submitURLOptInBox {
+  text-align: start;
+}
+
+.submitURLOptIn {
+  margin-left: -1px;
+}
+
+.mainBox[chromedir="rtl"] .submitURLOptIn {
+  margin-left: 0;
+  margin-right: -1px;
+}
+
+.submitButtonBox {
+  margin-top: 7px;
+}
+
+.submitButton {
+  float: right;
+}
+
+.mainBox[chromedir="rtl"] .submitButton {
+  float: left;
 }
 
 .helpIcon {
@@ -89,4 +143,58 @@ html|a {
   min-width: 16px;
   min-height: 16px;
   background: url("chrome://mozapps/skin/plugins/pluginHelp-16.png") no-repeat;
+  cursor: pointer;
+  float: left;
+}
+
+.mainBox[chromedir="rtl"] .helpIcon {
+  float: right;
+}
+
+.closeIcon {
+  display: block;
+  position: absolute;
+  width: 16px;
+  height: 16px;
+  top: 4px;
+  right: 4px;
+  border: none;
+  background-color: transparent;
+  background-image: url("chrome://global/skin/icons/close-button.gif");
+  background-repeat: no-repeat;
+}
+
+.closeIcon:-moz-locale-dir(rtl) {
+  right: auto;
+  left: 4px;
+}
+
+:-moz-handler-clicktoplay .mainBox {
+  background-image: none;
+  background-color: rgba(255, 255, 255, .2);
+  border: 1px dashed rgba(128, 128, 128, 0.5);
+  color: #808080;
+  text-shadow: none;
+  box-shadow: none;
+  transition: background-color 150ms ease;
+}
+
+:-moz-handler-clicktoplay .mainBox:hover,
+:-moz-handler-clicktoplay .mainBox:hover:active {
+  background-color: rgba(255, 255, 255, .8);
+}
+
+:-moz-handler-clicktoplay .mainBox,
+:-moz-handler-clicktoplay html|a {
+  color: #000000;
+}
+
+:-moz-handler-clicktoplay .hoverBox:hover,
+:-moz-handler-clicktoplay .hoverBox:hover html|a,
+:-moz-handler-clicktoplay .hoverBox:hover:active,
+:-moz-handler-clicktoplay .hoverBox:hover:active html|a {
+}
+
+:-moz-handler-clicktoplay .closeIcon {
+  background-image: url("chrome://mozapps/skin/plugins/contentPluginClose.png");
 }
index 58865a2aaaf7bb5b9178cddb99dd703d7f57cc50..63e13a9b9d7ecd055a9a623b8bea02e31a917a34 100644 (file)
@@ -12,6 +12,18 @@ findbar {
   border-top: 3px solid #000000;
   border-bottom: none;
   min-width: 1px;
+  transition-property: margin-bottom, opacity, visibility;
+  transition-duration: 150ms, 150ms, 0s;
+  transition-timing-function: ease-in-out, ease-in-out, linear;
+}
+
+findbar[hidden] {
+  /* Override display:none to make the transition work. */
+  display: -moz-box;
+  visibility: collapse;
+  margin-bottom: -1em;
+  opacity: 0;
+  transition-delay: 0s, 0s, 150ms;
 }
 
 /* find-next button */
index 5dd43311ee8bb2637ab8a16b02160cc00cf92b35..5be3fee956cf7d393c4473752e6dc297a0db52f6 100644 (file)
@@ -312,10 +312,13 @@ description {
 
 .text-link {
   color: #3333FF;
-  text-decoration: underline;
   cursor: pointer;
 }
 
+.text-link:hover {
+  text-decoration: underline;
+}
+
 .text-link:-moz-focusring {
   /* Don't specify the outline-color, we should always use initial value. */
   outline: 1px dotted;
index 1fff0b1c607ad0ca87fa1363ccad80cbe5725b31..ddc99ad0052d6242ba3edb2e25234af38da4e0f3 100644 (file)
@@ -12,4 +12,8 @@
     background-color: #FFFFFF;
     color: #221500;
   }
+
+  .completeRotation {
+    transition: transform 0.3s ease 0s;
+  }
 }
index 97bd736ecc153daa8991e3955c9b619cf76e345d..d9acf3614a16c6c782f4a9708e8a410ca8b03783 100644 (file)
@@ -6,54 +6,68 @@
   background-color: rgba(156,156,255,0.75);
 }
 
-.playButton, .muteButton {
-  /* Remove the usual button appearance and styling */
+.playButton,
+.muteButton,
+.fullscreenButton {
+  background-color: transparent;
+  background-repeat: no-repeat;
+  background-position: center;
   margin: 0px;
   padding: 0px;
   border: none;
   min-height: 28px;
-  background-color: transparent;
-  background-repeat: no-repeat;
-  background-position: center center;
-}
-.playButton {
   min-width: 28px;
-  margin-right: -22px; /* 1/2 of scrubber thumb width, for overhang. */
-  position: relative; /* Trick to work around negative margin interfering with clicking on the button. */
 }
-.muteButton {
-  min-width: 33px;
-}
-.playButton:hover, .muteButton:hover {
+
+.playButton:hover,
+.muteButton:hover,
+.fullscreenButton:hover {
   background-color: rgba(255,207,0,0.75);
 }
+
+.playButton:hover:active,
+.muteButton:hover:active,
+.fullscreenButton:hover:active {
+  background-color: rgba(255,159,0,0.75);
+}
+
 .playButton:-moz-focusring > .button-box,
-.muteButton:-moz-focusring > .button-box {
+.muteButton:-moz-focusring > .button-box,
+.fullscreenButton:-moz-focusring > .button-box {
   border: 1px dotted rgba(0,0,0,0.75);
 }
 
 .playButton {
   background-image: url("chrome://global/skin/media/pauseButton.png");
+  margin-right: -22px; /* 1/2 of scrubber thumb width, for overhang. */
+  position: relative; /* Trick to work around negative margin interfering with clicking on the button. */
 }
+
 .playButton:hover {
   background-image: url("chrome://global/skin/media/pauseButton-hover.png");
 }
+
 .playButton[paused] {
   background-image: url("chrome://global/skin/media/playButton.png");
 }
+
 .playButton[paused]:hover {
   background-image: url("chrome://global/skin/media/playButton-hover.png");
 }
 
 .muteButton {
   background-image: url("chrome://global/skin/media/muteButton.png");
+  min-width: 33px;
 }
+
 .muteButton:hover {
   background-image: url("chrome://global/skin/media/muteButton-hover.png");
 }
+
 .muteButton[muted] {
   background-image: url("chrome://global/skin/media/unmuteButton.png");
 }
+
 .muteButton[muted]:hover {
   background-image: url("chrome://global/skin/media/unmuteButton-hover.png");
 }
 }
 
 .fullscreenButton {
-  background: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 16, 16, 0) no-repeat center;
-  margin: 0;
-  padding: 0;
-  min-height: 28px;
-  min-width: 28px;
-  border: none;
+  background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 0, 16, 16, 0);
 }
 
 .fullscreenButton:hover {
-  background-color: rgba(255,207,0,0.75);
   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 16, 16, 32, 0);
 }
 
@@ -81,7 +89,6 @@
 }
 
 .fullscreenButton[fullscreened]:hover {
-  background-color: rgba(255,207,0,0.75);
   background-image: -moz-image-rect(url("chrome://global/skin/media/fullscreenButton.png"), 16, 32, 32, 16);
 }
 
 }
 
 .timeThumb[showhours="true"] {
-  background: url("chrome://global/skin/media/scrubberThumbWide.png") no-repeat center;
+  background-image: url("chrome://global/skin/media/scrubberThumbWide.png");
 }
 
 /*
index 7c89b3cb7fa565d3226e1cd9034758e929fd5692..8c88d60e6dc81a1d33353c37cf63afa211f48250 100644 (file)
@@ -15,6 +15,7 @@
   box-shadow: inset 0 1px 5px #8050B0;
   padding: 5px;
   -moz-user-select: none;
+  position: relative;
 }
 
 .hoverBox {
@@ -73,8 +74,8 @@ html|a {
 }
 
 .msg {
-  font-size: 12px;
   cursor: default;
+  width: 100%;
 }
 
 :-moz-handler-clicktoplay .mainBox,
@@ -137,11 +138,6 @@ html|a {
   float: left;
 }
 
-.msgBottomLinks {
-  padding-left: 2px;
-  padding-right: 2px;
-}
-
 .helpIcon {
   float: left;
   display: inline-block;
@@ -183,7 +179,7 @@ html|a {
   background-image: none;
   background-color: rgba(0, 0, 0, .2);
   border: 2px dashed rgba(255, 207, 0, 0.7);
-  border-radius: 3px;
+  border-radius: 8px;
   color: #8050B0;
   text-shadow: none;
   box-shadow: none;