Q3Stats is now open source! :)

This commit is contained in:
2017-03-06 20:33:09 +01:00
commit bfdcb87cef
197 changed files with 16395 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
.q3stats-chart {
height: 400px;
.highcharts-loading {
opacity: 1 !important;
.highcharts-loading-inner {
position: static !important;
top: 0px !important;
visibility: hidden;
&::after {
@include loading;
content: '';
display: block;
visibility: visible;
}
}
}
}

View File

@@ -0,0 +1,21 @@
.q3stats-loader {
background-color: white;
bottom: 0px;
display: block;
left: 0px;
opacity: 0;
pointer-events: none;
position: absolute;
right: 0px;
top: 0px;
transition: opacity 0.3s;
&.visible {
opacity: 1;
pointer-events: auto;
}
.inner {
@include loading;
}
}