better styles for textbox focus highlight
[themes.git] / EarlyBlue / global / textbox.css
index f194f30540bbdb6189e71acebd239c3bcfe16ee5..c452403ad8447ab3adcd614ada3f453608fdadeb 100644 (file)
  *
  * ***** END LICENSE BLOCK ***** */
 
-@import url("chrome://global/content/autocomplete.css");
-
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
-@namespace html url("http://www.w3.org/1999/xhtml");
-
 /* ===== textbox.css ==================================================
   == Styles used by the XUL textbox element.
   ======================================================================= */
 
+@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
+@namespace html url("http://www.w3.org/1999/xhtml");
+
 /* ::::: textbox ::::: */
 
 textbox {
   cursor: text;
-  margin: 1px 3px;
-  border: 2px solid;
-  -moz-border-top-colors: transparent #71737A;
-  -moz-border-right-colors: transparent #EFF0F4;
-  -moz-border-bottom-colors: transparent #EFF0F4;
-  -moz-border-left-colors: transparent #71737A;
+  margin: 2px 3px;
+  border: 1px inset #CCD0DD;
   padding: 1px 0px 1px 2px;
   background-color: #FFFFFF;
   color: #000000;
   min-height: 19px;
 }
 
-html|*.textbox-input, 
+html|*.textbox-input,
 html|*.textbox-textarea {
   margin: 0px !important;
   border: none !important;
@@ -70,6 +64,10 @@ html|*.textbox-textarea {
   font: inherit;
 }
 
+.textbox-input-box menupopup {
+  cursor: default;
+}
+
 /* ..... readonly state ..... */
 
 textbox[readonly="true"] {
@@ -86,18 +84,13 @@ textbox[disabled="true"] {
 }
 
 textbox[focused="true"] {
-  -moz-border-top-colors: #6699CC #6699CC;
-  -moz-border-right-colors: #6699CC #6699CC;
-  -moz-border-bottom-colors: #6699CC #6699CC;
-  -moz-border-left-colors: #6699CC #6699CC;
-  margin: 1px 3px;
+  border: 1px solid #6699CC;
+  outline: 1px solid #6699CC;
 }
 
 textbox[focused="true"][readonly="true"] {
-  -moz-border-top-colors: transparent #717171;
-  -moz-border-right-colors: transparent #EFEFEF;
-  -moz-border-bottom-colors: transparent #EFEFEF;
-  -moz-border-left-colors: transparent #717171;
+  border: 1px solid #6699CC;
+  outline: none;
 }
 
 /* ::::: plain textbox ::::: */
@@ -106,7 +99,14 @@ textbox.plain {
   padding: 0px !important;
   margin: 0px !important;
   border: none !important;
+  outline: none !important;
   background-color: inherit !important;
   color: inherit !important;
   min-height: 0px;
-}
\ No newline at end of file
+}
+
+/* ::::: textboxes inside toolbarpaletteitems ::::: */
+
+toolbarpaletteitem > toolbaritem > textbox > .textbox-input-box > html|*.textbox-input {
+  visibility: hidden;
+}