mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
56 lines
669 B
SCSS
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;
|
|
}
|
|
}
|