Remove with Text
Remove GetEngineeringSpcReview Better error message EnforceCodeStyleInBuild NginxFileSystem Remove Reactors and Working Directory AppSettings Delete self contained Thunder Tests Back to .net8.0 api/v4/InfinityQS ApiExplorerSettings Wafer Counter
This commit is contained in:
59
Server/wwwroot/package/dist/collection/components/spinner/spinner.css
vendored
Normal file
59
Server/wwwroot/package/dist/collection/components/spinner/spinner.css
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
:host {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
position: relative;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.spinner.s {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.border {
|
||||
box-sizing: border-box;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 4px solid transparent;
|
||||
border-top-color: #0A8276;
|
||||
border-left-color: #0A8276;
|
||||
border-right-color: #0A8276;
|
||||
border-top-left-radius: 1px;
|
||||
border-top-right-radius: 1px;
|
||||
border-radius: 50%;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
.border.inverted {
|
||||
border-top-color: #FFFFFF;
|
||||
border-left-color: #FFFFFF;
|
||||
border-right-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.semiconductor {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
.semiconductor svg {
|
||||
fill: #0A8276;
|
||||
}
|
||||
.semiconductor.inverted svg {
|
||||
fill: #FFFFFF;
|
||||
}
|
||||
.semiconductor.s svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user