add origdiff script to read hg log since a certain date and output it as both a text...
[themes.git] / EarlyBlue / editor / EditorDialog.css
index e4c2bab1c3c9d70015583e16484c7d12f57e2069..4782692dd3e1136cb9f2604c7fa8a55979667061 100644 (file)
@@ -61,10 +61,6 @@ groupbox {
   min-width: 20em;
 }
 
-.big-left-margin {
-  margin-left: 10px;
-}
-
 .bold {
   font-weight: bold;
 }
@@ -104,8 +100,8 @@ groupbox {
 }
 
 .color-well[default="true"] {
-  border: 1px solid transparent;
-  background-color: inherit;
+  border: 1px solid transparent !important;
+  background-color: inherit !important;
 }
 
 .color-button {
@@ -243,6 +239,20 @@ label#alignLabel {
   min-height: 10px;
 }
 
+/* These two should be the width of the checkbox and radio button images + margin + padding
+   Used to indent below those to the level of the text label next to image
+*/
+
+.checkbox-spacer {
+  width: 16px;
+  min-width: 16px;
+}
+
+.radio-spacer {
+  width: 16px;
+  min-width: 16px;
+}
+
 #alignTypeSelect {
   height: 34px;
 }
@@ -269,7 +279,7 @@ label#alignLabel {
 
 /* Don't change width/height of these without changing values in 
   GetOriginalWidth(), EdImageProps.js
-*/    
+*/
 #preview-image-box {
   border: 1px inset #CCD0DD;
   width: 82px;
@@ -279,7 +289,7 @@ label#alignLabel {
   max-height: 52px;
   min-height: 52px;
   margin: 6px 5px 6px 5px;
-  overflow: hidden;
+  overflow: -moz-hidden-unscrollable;
 }
 
 #preview-image-holder {
@@ -304,3 +314,27 @@ tree.AttributesTree {
   min-width: 200px;
   min-height: 200px;
 }
+
+/* ::::: select edit dialog ::::: */
+
+#SelectTreeChildren::-moz-tree-cell(SelectSelCol, checked-false) {
+  background: url("chrome://global/skin/checkbox/cbox.gif") 50% 50% no-repeat;
+}
+
+#SelectTreeChildren::-moz-tree-cell(SelectSelCol, checked-true) {
+  background: url("chrome://global/skin/checkbox/cbox-check.gif") 50% 50% no-repeat;
+}
+
+/* ::::: Publishing Progress ::::: */
+
+.progressitem[progress="busy"] {
+  list-style-image: url("chrome://editor/skin/icons/progress-busy.gif");
+}
+
+.progressitem[progress="done"] {
+  list-style-image: url("chrome://editor/skin/icons/progress-done.gif");
+}
+
+.progressitem[progress="failed"] {
+  list-style-image: url("chrome://editor/skin/icons/progress-failed.gif");
+}