mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +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*/
|
||||
body {
|
||||
padding-top: 50px;
|
||||
|
@ -84,11 +87,15 @@ a > i.fa {
|
|||
position: fixed;
|
||||
top:50px;
|
||||
right:0;
|
||||
overflow-y: auto;
|
||||
bottom:0px;
|
||||
}
|
||||
.sidenav-left {
|
||||
position: fixed;
|
||||
top:50px;
|
||||
left:0;
|
||||
overflow-y: auto;
|
||||
bottom:0px;
|
||||
}
|
||||
.dropdown-menu .dropdown-toggle:after {
|
||||
border-top: .3em solid transparent;
|
||||
|
|
|
@ -85,11 +85,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
{% block sidebar %}
|
||||
{% endblock %}
|
||||
</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 #}
|
||||
{% bootstrap_messages %}
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
<div class="col-lg-2 pt4">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue