aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_backdrop.scss
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_backdrop.scss')
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_backdrop.scss14
1 files changed, 0 insertions, 14 deletions
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_backdrop.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_backdrop.scss
deleted file mode 100644
index 9705ae9eea..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_backdrop.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-// Shared between modals and offcanvases
-@mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) {
- position: fixed;
- top: 0;
- left: 0;
- z-index: $zindex;
- width: 100vw;
- height: 100vh;
- background-color: $backdrop-bg;
-
- // Fade for backdrop
- &.fade { opacity: 0; }
- &.show { opacity: $backdrop-opacity; }
-}