Fix video player sizing (#1764)

* Fix video player sizing
* Add explanation
This commit is contained in:
InfiniteTF 2021-10-01 09:30:43 +02:00 committed by GitHub
parent cca156b5f8
commit 73ea195668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -24,6 +24,7 @@
* Added sv-SE language option. ([#1691](https://github.com/stashapp/stash/pull/1691))
### 🐛 Bug fixes
* Fix video player aspect ratio shifting sometimes when clicking scene tabs. ([#1764](https://github.com/stashapp/stash/pull/1764))
* Fix video transcoding process starting before video is played. ([#1780](https://github.com/stashapp/stash/pull/1780))
* Don't scan zero-length files. ([#1779](https://github.com/stashapp/stash/pull/1779))
* Accept svg files in file selector for tag images. ([#1778](https://github.com/stashapp/stash/pull/1778))

View file

@ -16,6 +16,13 @@ $sceneTabWidth: 450px;
outline: 0;
}
/* stylelint-disable */
.jw-video {
// #1764 - jwplayer sets object-fit: fit in the style. Need to override it.
object-fit: contain !important;
}
/* stylelint-enable */
.video-wrapper {
height: 56.25vw;