Files
ionic-framework/scss/ionic/_modal.scss
2013-10-04 20:55:06 -05:00

39 lines
778 B
SCSS

/**
* Modals are independent windows that slide in from off-screen.
*/
.modal {
position: fixed;
z-index: $zindex-modal;
top: 0;
width: 100%;
min-height: 100%;
overflow: hidden;
background-color: $modal-bg-color;
// Start hidden
opacity: 0;
// Start it down low
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
transition: -webkit-transform 0.25s, opacity 0.25s;
-webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1);
transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1);
// Active modal
&.active {
opacity: 1;
height: 100%;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}