X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fglobal%2Ftextbox.css;h=7a21b855e82377a4c607c25aa16a56799388a1db;hp=ede01f3d26515c3b514443229fbf7874c3f385f8;hb=1e29db46dc44bb298673e0574cef312051e15a94;hpb=a12570b9df613c628ada41eac0bf14f642ecf578 diff --git a/LCARStrek/global/textbox.css b/LCARStrek/global/textbox.css index ede01f3d..7a21b855 100644 --- a/LCARStrek/global/textbox.css +++ b/LCARStrek/global/textbox.css @@ -35,35 +35,31 @@ * * ***** 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; + border-radius: 3px; + -moz-outline-radius: 5px; cursor: text; - margin: 1px 3px; - border: 2px solid; - -moz-border-top-colors: transparent #9C9CFF; - -moz-border-right-colors: transparent #9C9CFF; - -moz-border-bottom-colors: transparent #9C9CFF; - -moz-border-left-colors: transparent #9C9CFF; - padding: 1px 0px 1px 2px; + margin: 1px 2px; + border: 1px solid #9C9CFF; + padding: 1px 0px; + -moz-padding-start: 2px; background-color: #000000; color: #E7ADE7; min-height: 19px; } -html|*.textbox-input, +html|*.textbox-input, html|*.textbox-textarea { - -moz-border-radius: 3px; + border-radius: 3px; margin: 0px !important; border: none !important; padding: 0px !important; @@ -72,6 +68,15 @@ html|*.textbox-textarea { font: inherit; } +html|*.textbox-input:-moz-placeholder, +html|*.textbox-textarea:-moz-placeholder { + color: #6000CF; +} + +.textbox-input-box menupopup { + cursor: default; +} + /* ..... readonly state ..... */ textbox[readonly="true"] { @@ -82,11 +87,7 @@ textbox[readonly="true"] { /* ..... disabled state ..... */ textbox[disabled="true"] { - border: 2px solid; - -moz-border-top-colors: transparent #8050B0; - -moz-border-right-colors: transparent #8050B0; - -moz-border-bottom-colors: transparent #8050B0; - -moz-border-left-colors: transparent #8050B0; + border: 1px solid #8050B0; cursor: default; color: #8050B0; } @@ -94,18 +95,13 @@ textbox[disabled="true"] { /* ..... focused state ..... */ textbox[focused="true"] { - -moz-border-top-colors: #008484 #008484; - -moz-border-right-colors: #008484 #008484; - -moz-border-bottom-colors: #008484 #008484; - -moz-border-left-colors: #008484 #008484; - margin: 1px 3px; + border: 1px solid #008484; + outline: 1px solid #008484; } textbox[focused="true"][readonly="true"] { - -moz-border-top-colors: transparent #8050B0; - -moz-border-right-colors: transparent #8050B0; - -moz-border-bottom-colors: transparent #8050B0; - -moz-border-left-colors: transparent #8050B0; + border: 1px solid #8050B0; + outline: none; } /* ::::: plain textbox ::::: */ @@ -114,7 +110,38 @@ textbox.plain { padding: 0px !important; margin: 0px !important; border: none !important; - background-color: inherit !important; + outline: none !important; + background-color: transparent; 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:-moz-locale-dir(rtl) { + -moz-transform: scaleX(-1); +} + +.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(16px, 16px, 32px, 0); +} + +.textbox-search-clear:not([disabled]) { + cursor: default; +} + +/* ::::: textboxes inside toolbarpaletteitems ::::: */ + +toolbarpaletteitem > toolbaritem > textbox > .textbox-input-box > html|*.textbox-input { + visibility: hidden; +}