forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
23 lines
561 B
SCSS
23 lines
561 B
SCSS
|
|
.ajax-progress-throbber, .ajax-progress-throbber .throbber {
|
|
background: none !important;
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
position: relative;
|
|
}
|
|
|
|
.layout-builder .ajax-progress-throbber:before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: .5em;
|
|
left: .5em;
|
|
width: 1.125em;
|
|
height: 1.125em;
|
|
-webkit-animation: gin-throbber 0.75s linear infinite;
|
|
animation: gin-throbber 0.75s linear infinite;
|
|
border: 2px solid var(--gin-color-primary);
|
|
border-right: 2px dotted transparent;
|
|
border-radius: 50%;
|
|
}
|