mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
33 lines
487 B
SCSS
33 lines
487 B
SCSS
|
|
/**
|
|
* Modals
|
|
* --------------------------------------------------
|
|
* Modals are independent windows that slide in from off-screen.
|
|
*/
|
|
|
|
.modal {
|
|
@include translate3d(0, 100%, 0);
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: $z-index-modal;
|
|
overflow: hidden;
|
|
|
|
min-height: 100%;
|
|
width: 100%;
|
|
|
|
background-color: $modal-bg-color;
|
|
opacity: 0;
|
|
|
|
// Active modal
|
|
&.active {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.modal-open {
|
|
pointer-events: none;
|
|
|
|
.modal {
|
|
pointer-events: auto;
|
|
}
|
|
} |