From 6d4851918fede31b6e263d58ffc160b23ab9336a Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Wed, 25 Sep 2019 14:46:29 +0100 Subject: [PATCH] "Fixed" titlebar z-index --- src/App.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/App.vue b/src/App.vue index 7d0cab26..4bc91a3e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -60,6 +60,13 @@ export default { // Custom UIkit CSS modifications @import "./assets/less/theme.less"; +// We override the custom-electron-titlebar z-index +// UIKit lightbox must be able to draw over the titlebar +// as it currently always spawns at the root of the DOM +.titlebar, .titlebar > * { + z-index: 1000 !important; +} + #app { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;