Files
ionic-framework/scss/ionic/_popup.scss
2013-10-21 16:57:18 -05:00

56 lines
669 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%;
text-align: center;
text-overflow: ellipsis;
border-radius: 5px;
padding: 20px;
background-color: rgba(0,0,0,0.7);
color: #fff;
font-size: 15px;
h1,h2,h3,h4,h5 {
color: #fff;
}
}