Get the QueryStatus application displaying the status more appropriately

This commit is contained in:
Oliver 2025-11-12 00:09:52 -07:00
parent 5770abb7e8
commit 0362342419
11 changed files with 117 additions and 14 deletions

View file

@ -18,8 +18,9 @@
.taf > .window-content span {
&.loader {
width: 48px;
height: 48px;
--size: 40px;
width: var(--size);
height: var(--size);
border-radius: 50%;
position: relative;
animation: rotate 2s linear infinite;
@ -38,7 +39,7 @@
&::after{
inset: 8px;
transform: rotate3d(90, 90, 0, 180deg );
border-color: #FF3D00; /* This can be the user colour */
border-color: var(--spinner-inner-colour, #FF3D00);
}
}
}