mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix subtitles display on Tizen 2.x - hide controls if only they are enabled
This commit is contained in:
parent
e6f1802508
commit
21aec93e39
1 changed files with 5 additions and 1 deletions
|
@ -17,7 +17,11 @@
|
||||||
order: -1;
|
order: -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
video::-webkit-media-controls {
|
/* Controls are enabled for devices that don't support autoplay. They will be hidden when playback starts.
|
||||||
|
In Tizen 2.3 (and probably other old web engines), subtitles are located under '-webkit-media-controls' tree.
|
||||||
|
Therefore, we hide controls only if they are enabled.
|
||||||
|
*/
|
||||||
|
video[controls]::-webkit-media-controls {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue