fix max-height for screens bigger than 768px

This commit is contained in:
rabuzarus 2017-04-03 12:46:31 +02:00
parent 80f5a026be
commit 4dfdbeba54
1 changed files with 10 additions and 0 deletions

View File

@ -1328,6 +1328,11 @@ section #jotOpen {
max-height: calc(100vh - 210px); max-height: calc(100vh - 210px);
line-height: 1.3; line-height: 1.3;
} }
@media (min-width: 768px) {
.fbrowser .folders ul {
max-height: calc(100vh - 255px);
}
}
.fbrowser .folders li { .fbrowser .folders li {
padding-left: 20px; padding-left: 20px;
padding-right: 10px; padding-right: 10px;
@ -1353,6 +1358,11 @@ section #jotOpen {
overflow-y: auto; overflow-y: auto;
max-height: calc(100vh - 175px); max-height: calc(100vh - 175px);
} }
@media (min-width: 768px) {
.fbrowser .fbrowser-content-container {
max-height: calc(100vh - 220px);
}
}
.fbrowser.image .photo-album-image-wrapper img { .fbrowser.image .photo-album-image-wrapper img {
border: 1px solid #ddd; border: 1px solid #ddd;
} }