Files
ionic-framework/scss/ionic/_popup.scss
2013-10-21 10:44:35 -05:00

53 lines
619 B
SCSS

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