2018-03-25 18:22:59 +00:00
|
|
|
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
2018-03-25 17:30:42 +00:00
|
|
|
@import 'mixins';
|
|
|
|
|
|
|
|
.loading--overlay {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading--overlay:after,
|
|
|
|
.loading--overlay:before {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading--overlay:before {
|
|
|
|
top: 0;
|
|
|
|
content: '';
|
|
|
|
height: 100%;
|
|
|
|
background: rgba(white, 0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading--overlay:after {
|
|
|
|
top: 50%;
|
|
|
|
font-size: 18px;
|
|
|
|
margin-top: -10px;
|
|
|
|
text-align: center;
|
|
|
|
content: 'Loading...';
|
|
|
|
}
|
|
|
|
|