1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #2263 from MrTimscampi/osd-pointer-events

Fix OSD gradients not letting pointer events through

(cherry picked from commit 6a8173718d)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Bill Thornton 2020-12-24 12:53:20 -05:00 committed by Joshua M. Boniface
parent 32514307eb
commit 2c230388be

View file

@ -22,6 +22,7 @@
color: #fff;
user-select: none;
-webkit-touch-callout: none;
pointer-events: none;
}
.skinHeader-withBackground.osdHeader {
@ -32,6 +33,7 @@
backdrop-filter: none;
color: #eee;
height: 7.5em;
pointer-events: none;
}
.osdHeader-hidden {
@ -39,6 +41,7 @@
}
.osdHeader .headerTop {
pointer-events: all;
max-height: 3.5em;
}
@ -104,6 +107,7 @@
}
.osdControls {
pointer-events: all;
flex-grow: 1;
padding: 0 0.8em;
}