mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-09 03:16:25 +00:00
Add right sidebar for large screenn, remove scroll in navbar, add scroll in left sidebar
This commit is contained in:
parent
a093637cb3
commit
2db1f5afee
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
.navbar-collapse {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
/* For the footer to be at the bottom*/
|
/* For the footer to be at the bottom*/
|
||||||
body {
|
body {
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
|
@ -84,11 +87,15 @@ a > i.fa {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top:50px;
|
top:50px;
|
||||||
right:0;
|
right:0;
|
||||||
|
overflow-y: auto;
|
||||||
|
bottom:0px;
|
||||||
}
|
}
|
||||||
.sidenav-left {
|
.sidenav-left {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top:50px;
|
top:50px;
|
||||||
left:0;
|
left:0;
|
||||||
|
overflow-y: auto;
|
||||||
|
bottom:0px;
|
||||||
}
|
}
|
||||||
.dropdown-menu .dropdown-toggle:after {
|
.dropdown-menu .dropdown-toggle:after {
|
||||||
border-top: .3em solid transparent;
|
border-top: .3em solid transparent;
|
||||||
|
|
|
@ -85,11 +85,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% block sidebar %}
|
{% block sidebar %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-offset-2 col-sm-10 text-left pt4">
|
<div class="col-sm-offset-2 col-sm-10 col-lg-8 text-left pt4">
|
||||||
{# Display django.contrib.messages as Bootstrap alerts #}
|
{# Display django.contrib.messages as Bootstrap alerts #}
|
||||||
{% bootstrap_messages %}
|
{% bootstrap_messages %}
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-lg-2 pt4">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue