Merge branch 'fix/attachment-css' into 'develop'

Make image orientation consistent on FF, fix videos w/ modal

See merge request pleroma/pleroma-fe!926
This commit is contained in:
Shpuld Shpludson 2019-09-03 04:09:56 +00:00
commit fbfedf0084
2 changed files with 3 additions and 1 deletions

View file

@ -190,6 +190,7 @@
.video { .video {
width: 100%; width: 100%;
height: 100%;
} }
.play-icon { .play-icon {
@ -286,7 +287,7 @@
} }
img { img {
image-orientation: from-image; image-orientation: from-image; // NOTE: only FF supports this
} }
} }
} }

View file

@ -63,6 +63,7 @@
max-width: 90%; max-width: 90%;
max-height: 90%; max-height: 90%;
box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.5); box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.5);
image-orientation: from-image; // NOTE: only FF supports this
} }
.modal-view-button-arrow { .modal-view-button-arrow {