Vmeda.Online/src/components/loading/loading.scss

41 lines
879 B
SCSS
Raw Normal View History

core-loading {
2017-12-29 17:05:52 +00:00
.core-loading-container {
width: 100%;
text-align: center;
padding-top: 10px;
clear: both;
}
2017-12-29 17:05:52 +00:00
.core-loading-content {
padding-bottom: 1px; /* This makes height be real */
}
2017-12-29 17:05:52 +00:00
&.core-loading-noheight .core-loading-content {
height: auto;
}
@include core-transition(core-show-animation);
}
2018-01-24 10:35:49 +00:00
.scroll-content > core-loading > .core-loading-container,
ion-content > .scroll-content > core-loading > .core-loading-container,
2017-12-29 17:05:52 +00:00
.core-loading-center .core-loading-container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: table;
2017-12-29 17:05:52 +00:00
height: 100%;
width: 100%;
z-index: 1;
margin: 0;
padding: 0;
clear: both;
2017-12-29 17:05:52 +00:00
.core-loading-spinner {
display: table-cell;
text-align: center;
vertical-align: middle;
}
}