fix(skin): hide volume popover when volume control is unsupported (#1025)

This commit is contained in:
rahim
2026-03-19 01:14:57 -07:00
committed by GitHub
parent c07da27ead
commit c09dbdd121
11 changed files with 277 additions and 200 deletions
+5
View File
@@ -6,3 +6,8 @@ media-tooltip-group {
:host {
display: grid;
}
/* Hide volume popover when volume control is unsupported (e.g., iOS Safari). */
.media-popover--volume:has(media-volume-slider[data-availability="unsupported"]) {
display: none;
}