diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-07-09 11:09:40 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-07-09 11:09:40 +0000 |
commit | 4e06fa6304c30dd3bfcfa818a84d7fb7e92eea33 (patch) | |
tree | 5888f3d7764c70a327153e647f18fc0b160f9179 /themes | |
parent | cf48fc7ee4fad5a641d675265afbe4573f55fb72 (diff) | |
download | jquery-ui-4e06fa6304c30dd3bfcfa818a84d7fb7e92eea33.tar.gz jquery-ui-4e06fa6304c30dd3bfcfa818a84d7fb7e92eea33.zip |
- removed 1.6 branch1.5.2
- changed version in tags/1.5.2 to 1.5.2
- merged trunk with 1.6
Diffstat (limited to 'themes')
-rw-r--r-- | themes/jquery.autocomplete.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/themes/jquery.autocomplete.css b/themes/jquery.autocomplete.css new file mode 100644 index 000000000..4e7eb2ca3 --- /dev/null +++ b/themes/jquery.autocomplete.css @@ -0,0 +1,48 @@ +.ui-autocomplete-results { + padding: 0px; + border: 1px solid black; + background-color: white; + overflow: hidden; + z-index: 99999; +} + +.ui-autocomplete-results ul { + width: 100%; + list-style-position: outside; + list-style: none; + padding: 0; + margin: 0; +} + +.ui-autocomplete-results li { + margin: 0px; + padding: 2px 5px; + cursor: default; + display: block; + /* + if width will be 100% horizontal scrollbar will apear + when scroll mode will be used + */ + /*width: 100%;*/ + font: menu; + font-size: 12px; + /* + it is very important, if line-height not setted or setted + in relative units scroll will be broken in firefox + */ + line-height: 16px; + overflow: hidden; +} + +.ui-autocomplete-loading { + background: white url('indicator.gif') right center no-repeat; +} + +.ui-autocomplete-odd { + background-color: #eee; +} + +.ui-autocomplete-over { + background-color: #0A246A; + color: white; +} |