make grippytoolbar work on trunk EarlyBlue
[themes.git] / EarlyBlue / communicator / communicator.css
index a2e652c677ac05201598c31e08da9a5656abec8e..46b56ab21057fe4f27ab39157db7f8db7aa74276 100644 (file)
    == Styles shared everywhere throughout the Communicator suite.
    ========================================================================== */
 
-@import url(chrome://global/skin/);
-@import url(chrome://communicator/skin/brand.css);
-@import url(chrome://communicator/skin/button.css);
-@import url(chrome://communicator/skin/formatting.css);
+@import url("chrome://global/skin/");
+@import url("chrome://communicator/content/communicator.css");
+@import url("chrome://communicator/skin/brand.css");
+@import url("chrome://communicator/skin/button.css");
+@import url("chrome://communicator/skin/toolbar.css");
 
 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
 
-#offline-status[offline="true"]
-  {
-    list-style-image      : url("chrome://communicator/skin/icons/offline.gif");
-  }
+.toolbar-primary {
+  -moz-binding: url("chrome://communicator/content/bindings/toolbar.xml#grippytoolbar-primary");
+}
+
+#offline-status[offline="true"] {
+  list-style-image: url("chrome://communicator/skin/icons/offline.gif");
+}
+
+#offline-status {
+  list-style-image: url("chrome://communicator/skin/icons/online.gif");
+}
+
+/* ::::: spell checker ::::: */
+
+.spell-suggestion {
+  font-weight: bold;
+}
 
-#offline-status
-  {
-    list-style-image      : url("chrome://communicator/skin/icons/online.gif");
-  }
-  
 /* ::::: directional button icons ::::: */
 
 .up {
-  list-style-image:url("chrome://global/skin/scroll-up.gif");
+  list-style-image:url("chrome://global/skin/arrow/arrow-up.gif");
   min-width: 0px;
 }
 
 .up[disabled="true"] {
-  list-style-image:url("chrome://global/skin/scroll-up-disabled.gif");
+  list-style-image:url("chrome://global/skin/arrow/arrow-up-disabled.gif");
 }
 
 .down {
   min-width: 0px;
-  list-style-image:url("chrome://global/skin/scroll-down.gif");
+  list-style-image:url("chrome://global/skin/arrow/arrow-down.gif");
 }
 
 .down[disabled="true"] {
-  list-style-image:url("chrome://global/skin/scroll-down-disabled.gif");
+  list-style-image:url("chrome://global/skin/arrow/arrow-down-disabled.gif");
 }
 
 .sidebarTree {
   border: none;
   margin: 0px !important;
 }
+
+/* ::::: download manager ::::: */
+
+#downloadView > treechildren::-moz-tree-image(Name) {
+  margin-right: 2px;
+}
+
+/* :::::: autoscroll popup ::::: */
+
+#autoscroller {
+  height: 28px;
+  width: 28px;
+  border: 0px;
+  margin: -14px;
+  padding: 0px;
+  background-image: url("chrome://communicator/skin/icons/autoscroll.png");
+  background-color: transparent;
+  -moz-appearance: none;
+}
+
+#autoscroller[scrolldir="NS"] {
+  background-position: left center;
+}
+
+#autoscroller[scrolldir="EW"] {
+  background-position: left bottom;
+}
+
+#autoscroller[transparent="true"] {
+  background-position: center top;
+}
+
+#autoscroller[transparent="true"][scrolldir="NS"] {
+  background-position: center center;
+}
+
+#autoscroller[transparent="true"][scrolldir="EW"] {
+  background-position: center bottom;
+}
+
+#autoscroller[translucent="true"] {
+  background-position: right top;
+}
+
+#autoscroller[translucent="true"][scrolldir="NS"] {
+  background-position: right center;
+}
+
+#autoscroller[translucent="true"][scrolldir="EW"] {
+  background-position: right bottom;
+}