diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-10-26 14:02:17 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-10-26 14:02:17 +0200 |
commit | 951c73d825a024aee6729d645afd97c7fa53c760 (patch) | |
tree | a0b44d0d13332490c69c9ce443dda54348f133be /view/theme/loozah | |
parent | dc212de9606422be6e912a0bb7f3569192942938 (diff) | |
download | volse-hubzilla-951c73d825a024aee6729d645afd97c7fa53c760.tar.gz volse-hubzilla-951c73d825a024aee6729d645afd97c7fa53c760.tar.bz2 volse-hubzilla-951c73d825a024aee6729d645afd97c7fa53c760.zip |
style autocomplete popup in themes
Diffstat (limited to 'view/theme/loozah')
-rw-r--r-- | view/theme/loozah/style.css | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 447072390..42b99b08c 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2745,9 +2745,31 @@ a.mail-list-link { margin-top: 10px; } -.type-video { background-position: 0px; 0px; } -.type-image { background-position: -20px; 0px; } -.type-audio { background-position: -40px; 0px; } -.type-text { background-position: -60px; 0px; } -.type-unkn { background-position: -80px; 0px; } +.type-video { background-position: 0px 0px; } +.type-image { background-position: -20px 0px; } +.type-audio { background-position: -40px 0px; } +.type-text { background-position: -60px 0px; } +.type-unkn { background-position: -80px 0px; } + +/* autocomplete popup */ +.acpopup { + max-height:150px; + background-color:#ffffff; + overflow:auto; + z-index:100000; + border:1px solid #cccccc; +} +.acpopupitem { + background-color:#ffffff; padding: 4px; + clear:left; +} +.acpopupitem img { + float: left; + margin-right: 4px; +} + +.acpopupitem.selected { + color: #FFFFFF; background: #3465A4; +} + |