mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-14 21:57:12 +03:00
18 lines
377 B
SCSS
18 lines
377 B
SCSS
|
// Generates the `.in` style for the generic backdrop used components such as the drawer in overlay mode
|
||
|
@mixin mdb-layout-backdrop-in() {
|
||
|
|
||
|
> .mdb-layout-backdrop {
|
||
|
.in {
|
||
|
visibility: visible;
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
}
|
||
|
|
||
|
@supports (pointer-events: auto) {
|
||
|
&.in {
|
||
|
pointer-events: auto;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|