mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
30 lines
421 B
SCSS
30 lines
421 B
SCSS
@import "./backdrop.vars";
|
|
|
|
// Backdrop
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
@include position(0, 0, 0, 0);
|
|
|
|
display: block;
|
|
position: absolute;
|
|
|
|
transform: translateZ(0);
|
|
|
|
contain: strict;
|
|
cursor: pointer;
|
|
opacity: .01;
|
|
touch-action: none;
|
|
z-index: $z-index-backdrop;
|
|
}
|
|
|
|
|
|
:host(.backdrop-hide) {
|
|
background: transparent;
|
|
}
|
|
|
|
:host(.backdrop-no-tappable) {
|
|
cursor: auto;
|
|
}
|
|
|