X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=EarlyBlue%2Fglobal%2Fautocomplete.css;h=aa9154fa9c1cbcf2d9db4cb5d38afb33f427edd2;hp=38e74a0fe1aa8498e9c8deb4a362911687d6e681;hb=df8c26c46020f7b778d46e6ceedc93e4d4cb6202;hpb=a36a33b7053ded0c3ecebd701574377e188b653b diff --git a/EarlyBlue/global/autocomplete.css b/EarlyBlue/global/autocomplete.css index 38e74a0f..aa9154fa 100644 --- a/EarlyBlue/global/autocomplete.css +++ b/EarlyBlue/global/autocomplete.css @@ -42,6 +42,9 @@ == Styles used by the autocomplete widget. ======================================================================= */ +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); +@namespace html url("http://www.w3.org/1999/xhtml"); + /* ::::: autocomplete ::::: */ textbox { @@ -49,6 +52,18 @@ textbox { padding: 0px; } +/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */ +textbox.padded { + padding-top: 1px; + padding-bottom: 1px; + -moz-padding-start: 2px; + -moz-padding-end: 0px; +} + +.autocomplete-textbox-container { + -moz-box-align: center; +} + .textbox-input-box { margin: 0 3px; -moz-box-align: center; @@ -62,6 +77,10 @@ textbox { background-color: #9999CC; } +.autocomplete-history-dropmarker[enablehistory="true"] { + -moz-binding: url("chrome://global/skin/globalBindings.xml#history-dropmarker") +} + .autocomplete-history-dropmarker[open="true"] { border: 1px inset #CCD0DD; padding: 2px 0px 0px 2px; @@ -97,6 +116,16 @@ textbox { padding-left: 8px; } +.autocomplete-treebody::-moz-tree-row(selected) { + background-color: #336699; +} + +.autocomplete-treebody::-moz-tree-cell-text(selected) { + color: white !important; +} + +/* seamonkey and thunderbird do not use the new autocomplete widget yet so we need a couple of the old styles rules */ + .autocomplete-treebody::-moz-tree-row(menuactive) { background-color: #336699; } @@ -104,3 +133,15 @@ textbox { .autocomplete-treebody::-moz-tree-cell-text(menuactive) { color: white !important; } + +/* end of seamonkey and thunderbird required autocomplete rules */ + +/* ::::: textboxes inside toolbarpaletteitems ::::: */ + +toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input { + visibility: hidden; +} + +toolbarpaletteitem > toolbaritem > * > textbox > hbox > hbox > html|*.textbox-input { + visibility: hidden; +}