[web-src] Fix overly not covering whole screen for navbar dialogs
This commit is contained in:
parent
d2b5e82837
commit
5e33b2a612
|
@ -9,8 +9,7 @@
|
|||
<modal-dialog-remote-pairing :show="pairing_active" @close="pairing_active = false" />
|
||||
<notifications v-show="!show_burger_menu" />
|
||||
<navbar-bottom />
|
||||
<div class="is-overlay" v-show="show_burger_menu || show_player_menu"
|
||||
style="z-index:25; width: 100vw; height:100vh;background-color: rgba(10, 10, 10, 0.2);"
|
||||
<div class="fd-overlay-fullscreen" v-show="show_burger_menu || show_player_menu"
|
||||
@click="show_burger_menu = show_player_menu = false"></div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -278,3 +278,10 @@ hr.fd-navbar-divider {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.fd-overlay-fullscreen {
|
||||
@extend .is-overlay;
|
||||
z-index:25;
|
||||
background-color: rgba(10, 10, 10, 0.2);
|
||||
position: fixed;
|
||||
}
|
Loading…
Reference in New Issue