Commit f92abb9b by Oláh István Gergely

templates: fix scroll-on-footer problem

parent 11aa7239
...@@ -1321,7 +1321,13 @@ textarea[name="new_members"] { ...@@ -1321,7 +1321,13 @@ textarea[name="new_members"] {
#wrapper { #wrapper {
position: fixed;
padding-left: 0px; padding-left: 0px;
background: #252525;
left: 0px;
top: 46px;
height: 100%;
width: 210px;
transition: all .4s ease 0s; transition: all .4s ease 0s;
/* Firefox */ /* Firefox */
height: -moz-calc(100% - 130px); height: -moz-calc(100% - 130px);
...@@ -1336,11 +1342,10 @@ height: calc(100% - 130px); ...@@ -1336,11 +1342,10 @@ height: calc(100% - 130px);
#sidebar-wrapper { #sidebar-wrapper {
margin-left: 0px; margin-left: 0px;
left: 0px; left: 0px;
top: 46px; top: inherit;
width: 210px; bottom: 30px;
background: #222; width: inherit;
position: fixed; position: inherit;
height: 100%;
z-index: 10000; z-index: 10000;
transition: all .4s ease 0s; transition: all .4s ease 0s;
overflow: auto; overflow: auto;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment