Files
ionic-framework/scss/_popup.scss
2013-11-07 13:34:52 -06:00

62 lines
743 B
SCSS

/**
* Popups
* --------------------------------------------------
*/
.popup {
position: fixed;
}
.popup-title {
}
.popup-content {
padding: 10px;
}
.popup-buttons {
}
.loading-backdrop {
position: fixed;
top: 0;
left: 0;
visibility: hidden;
width: 100%;
height: 100%;
-webkit-transition: visibility 0s linear 0.3s;
&.enabled {
background-color: rgba(0,0,0,0.7);
}
&.active {
visibility: visible;
-webkit-transition-delay: 0s;
}
}
.loading {
position: fixed;
top: 50%;
left: 50%;
padding: 20px;
border-radius: 5px;
background-color: rgba(0,0,0,0.7);
color: #fff;
text-align: center;
text-overflow: ellipsis;
font-size: 15px;
h1,h2,h3,h4,h5 {
color: #fff;
}
}