X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fglobal%2Ftextbox.css;h=496cfd0e86d4c4aceac9748aff3b9c1e8d958467;hp=48707f7d2536217dfe7ebc068bfc3bdc0931b2d6;hb=d0646e4a75a2e7c90b075456d6bab4a0b0d8ab6f;hpb=b1eaa41997928ca662ce1158215dc02e5b203eb0 diff --git a/LCARStrek/global/textbox.css b/LCARStrek/global/textbox.css index 48707f7d..496cfd0e 100644 --- a/LCARStrek/global/textbox.css +++ b/LCARStrek/global/textbox.css @@ -35,28 +35,32 @@ * * ***** 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"); /* namespace for HTML elements */ - /* ===== 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"); /* namespace for HTML elements */ + /* ::::: textbox ::::: */ textbox { -moz-border-radius: 3px; + -moz-outline-radius: 5px; cursor: text; - margin: 2px 4px; + margin: 2px 3px; border: 1px solid #9C9CFF; padding: 1px 0px 1px 2px; background-color: #000000; color: #E7ADE7; + min-height: 19px; } -html|*.textbox-input, +textbox[empty="true"] { + color: #6000CF; +} + +html|*.textbox-input, html|*.textbox-textarea { -moz-border-radius: 3px; margin: 0px !important; @@ -67,6 +71,10 @@ html|*.textbox-textarea { font: inherit; } +.textbox-input-box menupopup { + cursor: default; +} + /* ..... readonly state ..... */ textbox[readonly="true"] { @@ -80,18 +88,19 @@ textbox[disabled="true"] { border: 1px solid #8050B0; cursor: default; color: #8050B0; -} + border: 1px solid #666699; +} /* ..... focused state ..... */ textbox[focused="true"] { - border: 2px solid #FFCF00; - margin: 1px 3px; + border: 1px solid #008484; + outline: 1px solid #008484; } textbox[focused="true"][readonly="true"] { border: 1px solid #8050B0; - margin: 2px 4px; + outline: none; } /* ::::: plain textbox ::::: */ @@ -100,4 +109,38 @@ textbox.plain { padding: 0px !important; margin: 0px !important; border: none !important; + outline: none !important; + background-color: inherit !important; + color: inherit !important; + min-height: 0px; +} + +/* ::::: search textbox ::::: */ + +.textbox-search-icon { + list-style-image: url("chrome://global/skin/icons/search.png"); + -moz-image-region: rect(0, 16px, 16px, 0); +} + +.textbox-search-icon[chromedir="rtl"] { + -moz-image-region: rect(16px, 16px, 32px, 0); +} + +.textbox-search-icon[searchbutton]:not([disabled]) { + cursor: pointer; +} + +.textbox-search-clear { + list-style-image: url("chrome://global/skin/icons/search.png"); + -moz-image-region: rect(32px, 16px, 48px, 0); +} + +.textbox-search-clear:not([disabled]) { + cursor: default; +} + +/* ::::: textboxes inside toolbarpaletteitems ::::: */ + +toolbarpaletteitem > toolbaritem > textbox > .textbox-input-box > html|*.textbox-input { + visibility: hidden; }