Get the QueryStatus application displaying the status more appropriately
This commit is contained in:
parent
5770abb7e8
commit
0362342419
11 changed files with 117 additions and 14 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
3
styles/elements/utils.css
Normal file
3
styles/elements/utils.css
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.taf > .window-content {
|
||||
.grow { flex-grow: 1; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue