Better mobile folderlist size

This commit is contained in:
djmaze 2021-12-06 11:44:04 +01:00
parent 45ae35110c
commit ddbcb4bfa4

View file

@ -4,6 +4,12 @@
.b-folders {
> * {
position: absolute;
right: 0;
left: 0;
}
ul {
margin: 0;
}
@ -24,10 +30,7 @@
}
.b-toolbar {
position: absolute;
top: 0;
right: 0;
left: 0;
height: 30px;
padding: 10px 0 0 @rlLowMargin;
color: #fff;
@ -35,10 +38,7 @@
}
.b-footer {
position: absolute;
bottom: 10px;
right: 0;
left: 0;
height: 30px;
padding: 0 10px 0 5px;
z-index: 101;
@ -48,11 +48,8 @@
}
.b-content {
position: absolute;
top: 50px + @rlLowMargin;
bottom: 32px + @rlLowMargin + @rlBottomMargin;
left: 0;
right: 0;
top: 50px + @rlLowMargin;
overflow: hidden;
overflow-y: auto;
min-width: 100px;
@ -251,3 +248,7 @@ html.rl-left-panel-disabled {
visibility: hidden;
}
}
html.rl-mobile .b-folders .b-content {
bottom: 0;
}