diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-12-19 12:46:36 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-12-19 12:46:36 +0100 |
commit | 3ad3d3037f8ba9643952bbf64e70c5edf302a73b (patch) | |
tree | ffd19cdee219754ce25486b9e28e9829a049b243 /view/theme/redbasic/css | |
parent | 9c5f2de4ec28ad3878fc565485d8d544caa8c66a (diff) | |
download | volse-hubzilla-3ad3d3037f8ba9643952bbf64e70c5edf302a73b.tar.gz volse-hubzilla-3ad3d3037f8ba9643952bbf64e70c5edf302a73b.tar.bz2 volse-hubzilla-3ad3d3037f8ba9643952bbf64e70c5edf302a73b.zip |
make sticky aside available for small screens. we had to get rid of the transition effect for this to work reliably
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8a38c68f3..c66b040a4 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -22,6 +22,8 @@ body { color: $font_colour; margin: 0px; height: 100%; + overflow-x: hidden; + } aside { @@ -30,6 +32,10 @@ aside { max-width: $aside_widthpx; } +aside#region_1 { + border-right: 1px solid transparent; +} + main { margin-left: auto; margin-right: auto; @@ -1839,10 +1845,6 @@ nav .badge.mail-update:hover { } main { - transition: all 0.25s ease-in-out; - } - - main { left: -$aside_widthpx; width: calc( 100% + $aside_widthpx ); } |