diff options
author | marijus <mario@localhost.localdomain> | 2013-11-09 15:48:59 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-11-09 15:48:59 +0100 |
commit | 5538972fec7b1ddc3ce33668f8de3a38d8f73823 (patch) | |
tree | fd37eb07ae58ccb7b7b6170eda8458e1eb214745 /view/theme | |
parent | 3a9cbcaf011f5c5d423e1cd99b43442669692129 (diff) | |
download | volse-hubzilla-5538972fec7b1ddc3ce33668f8de3a38d8f73823.tar.gz volse-hubzilla-5538972fec7b1ddc3ce33668f8de3a38d8f73823.tar.bz2 volse-hubzilla-5538972fec7b1ddc3ce33668f8de3a38d8f73823.zip |
some style work on searchbar autocomplete
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index a7e8f0717..affb91b39 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2854,10 +2854,37 @@ div.jGrowl div.info { #recip { } + +/*is this needed?*/ .autocomplete-w1 { background: #ffffff; no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } -.autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } -.autocomplete .selected { background:#F0F0F0; } -.autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } + +.autocomplete { + position: fixed; + top: 24px; + color: $font_colour; + border: 1px solid $nav_bg_1; + border-top: none; + background: #FFF; + cursor: default; + text-align: left; + max-height: 350px; + overflow: auto; + border-bottom-left-radius:$radiuspx; + border-bottom-right-radius:$radiuspx; + /* IE6 specific: */ + _height: 350px; + _margin: 0; + _overflow-x: hidden; +} +.autocomplete .selected { + background:$bgcolour; +} + +.autocomplete div { + padding:2px 5px; + white-space:nowrap; + overflow:hidden; +} #datebrowse-sidebar select { margin-left: 25px; |