support unified 'keyhole' back/forward button auto-hide in Australis as well
[themes.git] / EarlyBlue / global / popup.css
index 4ca198f7e45c949113c8b4aa2bb6659b6ddf93d0..99d0ec089eb62ccd8920d7a43b31b474ff7d0eb2 100644 (file)
@@ -17,7 +17,35 @@ panel {
 panel[type="arrow"] {
   background: transparent;
   border: none;
-  -moz-transition: opacity 300ms;
+  transition: opacity 300ms;
+}
+
+.panel-arrowcontainer[panelopen] {
+  transition-duration: 200ms, 150ms;
+  transition-property: opacity, transform;
+  transition-timing-function: ease-out;
+}
+
+.panel-arrowcontainer:not([panelopen]) {
+  /* Does not work correctly in Linux right now. - 2012-09-30
+   * Actually, only breaks uncommon Window Managers, but arrowpanels disappear completely. 2013-07-21
+  opacity: 0; */
+}
+
+.panel-arrowcontainer:not([panelopen])[side="top"] {
+  transform: translateY(-20px);
+}
+
+.panel-arrowcontainer:not([panelopen])[side="bottom"] {
+  transform: translateY(20px);
+}
+
+.panel-arrowcontainer:not([panelopen])[side="left"] {
+  transform: translateX(-20px);
+}
+
+.panel-arrowcontainer:not([panelopen])[side="right"] {
+  transform: translateX(20px);
 }
 
 panel[type="arrow"][side="top"],
@@ -53,7 +81,7 @@ panel[type="arrow"][side="right"] {
 }
 
 .panel-arrow[side="bottom"] {
-  -moz-transform: scaleY(-1);
+  transform: scaleY(-1);
   margin-top: -5px;
 }
 
@@ -70,10 +98,12 @@ panel[type="arrow"][side="right"] {
 }
 
 .panel-arrow[side="right"] {
-  -moz-transform: scaleX(-1);
+  transform: scaleX(-1);
   margin-left: -5px;
 }
 
+/* ::::: tooltip ::::: */
+
 tooltip {
   background-color : #FFFFCC;
   border : 1px outset #FFFFCC;