Skip to content

Commit

Permalink
Lower z-index on subtitle container
Browse files Browse the repository at this point in the history
- So that popup dictionary UI is more likely to appear on top
  • Loading branch information
killergerbah committed Aug 4, 2024
1 parent a743ab7 commit 9c73b5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extension/src/video.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
left: 50%;
transform: translate(-50%, -100%);
display: inline-block;
z-index: 2147483647;
z-index: 2147483646;
}

.asbplayer-subtitles-container-top {
position: absolute;
left: 50%;
transform: translate(-50%);
display: inline-block;
z-index: 2147483647;
z-index: 2147483646;
}

.asbplayer-subtitles {
Expand Down Expand Up @@ -39,15 +39,15 @@
left: 50%;
transform: translate(-50%, -100%);
display: inline-block;
z-index: 2147483647 !important;
z-index: 2147483646 !important;
}

.asbplayer-notification-container-top {
position: absolute !important;
left: 50%;
transform: translate(-50%);
display: inline-block;
z-index: 2147483647 !important;
z-index: 2147483646 !important;
}

.asbplayer-notification {
Expand Down

0 comments on commit 9c73b5f

Please sign in to comment.