feat(uti): Compiled CSS
[csit.git] / resources / tools / dash / app / pal / static / sass / bootstrap / mixins / _backdrop.scss
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
new file mode 100644 (file)
index 0000000..9705ae9
--- /dev/null
@@ -0,0 +1,14 @@
+// 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; }
+}