mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-26 05:05:23 +00:00
zindex fix & no close on fullscreen
This commit is contained in:
parent
472978aea4
commit
5bddf86ce9
3 changed files with 6 additions and 8 deletions
|
@ -21,11 +21,7 @@
|
|||
objectFit: contain ? 'contain' : 'cover',
|
||||
borderRadius:
|
||||
$store.state.tweaks.roundWatch && !isFullscreen
|
||||
? `
|
||||
${$store.state.tweaks.roundTweak / 3}rem
|
||||
${$store.state.tweaks.roundTweak / 3}rem
|
||||
${$store.state.tweaks.roundTweak / 12}rem
|
||||
${$store.state.tweaks.roundTweak / 12}rem !important`
|
||||
? `${$store.state.tweaks.roundTweak / 3}rem ${$store.state.tweaks.roundTweak / 3}rem 0rem 0rem !important`
|
||||
: '0',
|
||||
}"
|
||||
poster="https://media.discordapp.net/attachments/970793575153561640/974728851441729556/bam.png"
|
||||
|
@ -182,7 +178,7 @@
|
|||
<fullscreen
|
||||
style="z-index: 2"
|
||||
:fullscreen="isFullscreen"
|
||||
@fullscreen="controlsHandler(), fullscreenHandler()"
|
||||
@fullscreen="fullscreenHandler()"
|
||||
/>
|
||||
</div>
|
||||
<!-- time & fullscreen row end -->
|
||||
|
@ -215,12 +211,14 @@
|
|||
<quality
|
||||
v-if="$refs.player"
|
||||
:sources="sources"
|
||||
style="z-index: 77777"
|
||||
:current-source="$refs.player"
|
||||
@quality="qualityHandler($event)"
|
||||
/>
|
||||
<speed
|
||||
v-if="$refs.player"
|
||||
class="mx-2"
|
||||
style="z-index: 77777"
|
||||
:current-speed="$refs.player.playbackRate"
|
||||
@speed="$refs.player.playbackRate = $event"
|
||||
/>
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
<div>
|
||||
<v-bottom-sheet
|
||||
v-model="sheet"
|
||||
style="z-index: 999"
|
||||
:attach="$parent.$refs.vidcontainer"
|
||||
style="z-index: 777777"
|
||||
scrollable
|
||||
>
|
||||
<template #activator="{ on, attrs }">
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
<div>
|
||||
<v-bottom-sheet
|
||||
v-model="sheet"
|
||||
style="z-index: 999"
|
||||
:attach="$parent.$refs.vidcontainer"
|
||||
style="z-index: 777777"
|
||||
scrollable
|
||||
>
|
||||
<template #activator="{ on, attrs }">
|
||||
|
|
Loading…
Reference in a new issue