diff options
author | marijus <mario@mariovavti.com> | 2015-02-17 10:58:18 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2015-02-17 10:58:18 +0100 |
commit | 0bedf3e5d28ef75a992da6d30b79d93220b8b1fb (patch) | |
tree | f7cc9389c7e94fe4e7007cfc5de2398adbb542cd /view/theme/redbasic/css | |
parent | e0c9929325c4c4493e76f3e6dfe7c4ada63a55ea (diff) | |
download | volse-hubzilla-0bedf3e5d28ef75a992da6d30b79d93220b8b1fb.tar.gz volse-hubzilla-0bedf3e5d28ef75a992da6d30b79d93220b8b1fb.tar.bz2 volse-hubzilla-0bedf3e5d28ef75a992da6d30b79d93220b8b1fb.zip |
advanced css calc() failback
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 5b24ab731..9dbe92a1d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1395,14 +1395,6 @@ div.jGrowl div.jGrowl-notification { border-top: none; } -#search-text-ac .autocomplete { - margin-top: 2px; - margin-left: $radiuspx; - border: 1px solid #ccc; - border-top: none; - width: calc(197px - $radiuspx * 2) !important; -} - #recip-ac .autocomplete, #poke-recip-ac .autocomplete, #id-name-ac .autocomplete, @@ -1560,6 +1552,7 @@ header { } .acl-list-item { + width: 48%; /* fallback if browser does not support calc() */ width: calc(50% - 10px); border: 1px solid $acl_bordercolour; margin: 0px 0px 10px 10px; @@ -2353,6 +2346,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { } .acl-list-item { + width: 98%; /* fallback if browser does not support calc() */ width: calc(100% - 10px); } |