mirror of
https://github.com/stashapp/stash.git
synced 2026-01-06 23:53:30 +01:00
Fix video player sizing (#1764)
* Fix video player sizing * Add explanation
This commit is contained in:
parent
cca156b5f8
commit
73ea195668
2 changed files with 8 additions and 0 deletions
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue