diff options
author | Friendika <info@friendika.com> | 2011-10-26 12:51:08 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-26 12:51:08 -0700 |
commit | 1aba538c96628468b84136386496ccc69050e810 (patch) | |
tree | 102830d438afcc8552db79a9284dc1555c8f9247 /view/theme/loozah | |
parent | 9f5d7b254b4edef7e7d2ffa14eb7c3c03ea516fe (diff) | |
parent | 6a8b96709e13b04a0657c25b4538c160e2118131 (diff) | |
download | volse-hubzilla-1aba538c96628468b84136386496ccc69050e810.tar.gz volse-hubzilla-1aba538c96628468b84136386496ccc69050e810.tar.bz2 volse-hubzilla-1aba538c96628468b84136386496ccc69050e810.zip |
Merge branch 'pull'
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; +} + |