mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
Co-authored-by: Rahim <rahim.alwer@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
597 B
CSS
19 lines
597 B
CSS
/* -------------------------------------------------------------------------- */
|
|
/* Shared styles for all HTML skins */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
media-tooltip-group {
|
|
display: contents;
|
|
}
|
|
|
|
:host {
|
|
/* `display:grid` fixes a weird issue with Safari when setting aspect-ratio */
|
|
display: grid;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Hide volume popover when volume control is unsupported (e.g., iOS Safari). */
|
|
.media-popover--volume:has(media-volume-slider[data-availability="unsupported"]) {
|
|
display: none;
|
|
}
|