sync LCARStrek with windows browser theme changes in Firefox 24
[themes.git] / EarlyBlue / global / findBar.css
index 86552d66f9c7001b1f67196cc20cd96c91c34f2b..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 */
@@ -76,3 +88,7 @@ findbar {
 .find-status-icon[status="wrapped"] {
   list-style-image: url("chrome://global/skin/icons/wrap.png");
 }
+
+.find-status-icon[status="pending"] {
+  list-style-image: url("chrome://global/skin/icons/loading.gif");
+}