Remove body scrollbar in chat layout, keep nav bar still on scroll lock, add tiny fade for media modal

This commit is contained in:
Shpuld Shpuldson 2021-02-12 18:14:54 +02:00
parent 8b7c367b04
commit 4859e63a89
2 changed files with 17 additions and 0 deletions

View file

@ -73,11 +73,22 @@
}
}
@keyframes media-fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.modal-image {
max-width: 90%;
max-height: 90%;
box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.5);
image-orientation: from-image; // NOTE: only FF supports this
opacity: 1;
animation: 0.1s cubic-bezier(0.7, 0, 1, 0.6) media-fadein;
}
.modal-view-button-arrow {