X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=EarlyBlue%2Fglobal%2Ftextbox.css;h=c452403ad8447ab3adcd614ada3f453608fdadeb;hp=13cb2f79e65ad7f0228545667c92ec4fa5a09629;hb=fb49b4325c38f514c2ab591bb8d79dedf97f3ee2;hpb=37cf043b1ac46515826d52fbe2be3cf2317a351e diff --git a/EarlyBlue/global/textbox.css b/EarlyBlue/global/textbox.css index 13cb2f79..c452403a 100644 --- a/EarlyBlue/global/textbox.css +++ b/EarlyBlue/global/textbox.css @@ -35,32 +35,26 @@ * * ***** 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"] { @@ -83,21 +81,16 @@ textbox[disabled="true"] { cursor: default; background-color: #FFFFFF; color: #CCCCCC; -} +} 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; +}