update both themes to toolkit winstripe changes up to 2010-09-24
[themes.git] / LCARStrek / global / colorpicker.css
index 3ae29bcc52f2367c1530c2e0b64f5aa3017d7b8c..f85cae23e28cf3cf46dde7aff55f3c14ca3f1c93 100644 (file)
  *
  * ***** END LICENSE BLOCK ***** */
 
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
-
-/* colorpicker tiles */
-
-.colorpickertile {
-  width                 : 20px;
-  height                : 20px;
-  margin                : 1px;
-  -moz-border-radius    : 3px;
-  border                : 1px solid #9C9CFF;
-}
+/* ===== colorpicker.css ================================================
+  == Styles used by the XUL colorpicker element.
+  ======================================================================= */
 
-.colorpickertile[selected="true"] {
-  border                : 1px solid #008484;
-}
-
-.colorpickertile[hover="true"] {
-  border                : 1px solid #FFCF00;
-}
-
-.cp-light[hover="true"] {
-  border                : 2px dotted #FF9F00;
-}
+@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
 
-/* colorpicker button */
+/* ::::: colorpicker button ::::: */
 
 colorpicker[type="button"] {
-  width: 35px;
+  width: 34px;
   height: 20px;
-  -moz-border-radius: 3px;
+  border-radius: 3px;
   border: 1px solid #9C9CFF;
-}
-
-.colorpicker-button-internal-box {
   padding: 3px;
 }
 
@@ -77,9 +56,6 @@ colorpicker[type="button"] {
 }
 
 colorpicker[type="button"]:focus {
-
-
-colorpicker[type="button"]:focus > .colorpicker-button-internal-box {
 }
 
 colorpicker[type="button"][open="true"] {
@@ -88,3 +64,25 @@ colorpicker[type="button"][open="true"] {
 
 colorpicker[type="button"][open="true"] > .colorpicker-button-internal-box {
 }
+
+/* ::::: colorpicker tiles ::::: */
+
+.colorpickertile {
+  width: 20px;
+  height: 20px;
+  margin: 1px;
+  border-radius: 3px;
+  border : 1px solid #9C9CFF;
+}
+
+.colorpickertile[selected="true"] {
+  border: 1px solid #008484;
+}
+
+.colorpickertile[hover="true"] {
+  border: 1px solid #FFCF00;
+}
+
+.cp-light[hover="true"] {
+  border: 2px dotted #FF9F00;
+}