Remove the pterodactyl directory when handling assets

This supports moving away from multiple-theme support in the Panel since that is no longer going to be offered.
This commit is contained in:
Dane Everitt 2018-05-26 12:33:27 -07:00
parent f09eb8eec9
commit b35eb77a70
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
18 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,52 @@
.spinner {
color: transparent;
pointer-events: none;
position: relative;
&:after {
animation: spinners--spin 500ms infinite linear;
border-radius: 9999px;
@apply .border-2 .border-grey-light;
border-top-color: transparent !important;
border-right-color: transparent !important;
content: '';
display: block;
width: 1em;
height: 1em;
left: calc(50% - (1em / 2));
top: calc(50% - (1em / 2));
position: absolute !important;
}
/**
* Speeds
*/
&.spin-slow:after {
animation: spinners--spin 1200ms infinite linear;
}
/**
* Spinner Colors
*/
&.blue:after {
@apply .border-blue;
}
&.white:after {
@apply .border-white;
}
&.spinner-thick:after {
@apply .border-4;
}
}
@keyframes spinners--spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}