Files
ionic-framework/scss/_loading.scss
Andy Joslin 98e7e3df46 refactor($ionicLoading,$ionicPopup): factor out common code, add tests
Also fixes $ionicLoading flickering on ios7 in beta.1.
2014-04-08 13:35:02 -06:00

30 lines
482 B
SCSS

/**
* Loading
* --------------------------------------------------
*/
.loading {
@include ng-hide-fade(0.2s);
position: fixed;
top: 50%;
left: 50%;
z-index: $z-index-loading;
padding: $loading-padding;
border-radius: $loading-border-radius;
background-color: $loading-bg-color;
color: $loading-text-color;
text-align: center;
text-overflow: ellipsis;
font-size: $loading-font-size;
h1, h2, h3, h4, h5, h6 {
color: $loading-text-color;
}
}