mirror of
https://github.com/videojs/video.js.git
synced 2025-01-02 06:32:07 +02:00
fix: use backup styles when inset is not supported (#8844)
## Description Small fix to use backup styles only when inset is not supported. ## Specific Changes proposed Use backup styles only when inset is not supported. ## Requirements Checklist - [x] Feature implemented / Bug fixed
This commit is contained in:
parent
3e9e4e8beb
commit
1d771d9be8
@ -47,7 +47,7 @@ video::-webkit-media-text-track-display {
|
||||
width: 80% !important;
|
||||
}
|
||||
|
||||
@supports (inset: 10px) {
|
||||
@supports not (inset: 10px) {
|
||||
.video-js .vjs-text-track-display > div {
|
||||
top: 0;
|
||||
right: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user