Fix display bug with scrollbar into UI

This commit is contained in:
Xavier J 2016-12-21 14:00:50 +01:00
parent 20a4febecc
commit e98fc64bcb
4 changed files with 6 additions and 5 deletions

View file

@ -46,6 +46,7 @@ form {
#wrap { #wrap {
min-height: 100%; min-height: 100%;
margin-bottom: -50px; margin-bottom: -50px;
overflow: hidden;
} }
#wrap:after { #wrap:after {

View file

@ -44,7 +44,6 @@ h5 span {
#procedure_list { #procedure_list {
margin-left: -10px; margin-left: -10px;
overflow: scroll;
margin-top: 20px; margin-top: 20px;
a, a:hover { a, a:hover {
color: #FFFFFF; color: #FFFFFF;

View file

@ -1,13 +1,14 @@
#left-pannel { #left-pannel {
padding: 60px 0 0 10px; margin-top: 60px;
padding: 0 0 0 10px;
background-color: #003189; background-color: #003189;
height: 100%; height: calc(100% - 60px);
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
bottom: 0; bottom: 0;
color: white; color: white;
overflow: scroll; overflow-y: scroll;
#first-block { #first-block {
font-family: Arial; font-family: Arial;

View file

@ -11,7 +11,7 @@
width: 470px; width: 470px;
height: calc(100% - 25px); height: calc(100% - 25px);
padding: 15px; padding: 15px;
overflow: scroll; overflow-y: scroll;
} }
.open_pref_list { .open_pref_list {