diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-12-30 13:35:43 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-12-30 13:35:43 +0100 |
commit | 8a074dedb6ded00589ea9890fd6b40789cf920ce (patch) | |
tree | 71621bea2d4961e445c82f9d73114f64940f334a /view/theme | |
parent | c9cbd2f4f6cb432c6558bd88d783b356f0311a09 (diff) | |
download | volse-hubzilla-8a074dedb6ded00589ea9890fd6b40789cf920ce.tar.gz volse-hubzilla-8a074dedb6ded00589ea9890fd6b40789cf920ce.tar.bz2 volse-hubzilla-8a074dedb6ded00589ea9890fd6b40789cf920ce.zip |
css fixes and get rid of a javascript workaround
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 3 | ||||
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 7 |
2 files changed, 1 insertions, 9 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f6403e9e7..091ad292e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -8,8 +8,8 @@ /* generals */ html { - height: 100%; font-size: 100%; + overflow-x: hidden; } body { @@ -21,7 +21,6 @@ body { background-size: cover; color: $font_colour; margin: 0px; - height: 100%; overflow-x: hidden; } diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index e31458b4e..b7993ce90 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -30,13 +30,6 @@ $(document).ready(function() { } }); - $(window).on('scroll', function() { - if($('main').hasClass('region_1-on') && $(window).scrollLeft() > 5){ - $(window).scrollLeft(0); - toggleAside(); - } - }); - if($('aside').length && $('aside').html().length === 0) { $('#expand-aside').hide(); } |