
| Current Path : /var/www/html/rocksensor1/web/core/misc/dialog/off-canvas/css/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/misc/dialog/off-canvas/css/throbber.pcss.css |
/**
* @file
* Styling of AJAX actions throbber in off-canvas dialog.
*
* @internal
*/
#drupal-off-canvas-wrapper {
& .ajax-progress, /* This is the CSS class used in Claro. */
& .ajax-progress-throbber {
display: inline-block;
overflow: hidden;
width: 15px;
height: 15px;
margin: 0 10px;
animation: off-canvas-throbber-spin 1s linear infinite;
vertical-align: middle;
border: 2px solid var(--off-canvas-text-color);
border-top-color: transparent;
border-radius: 50%;
@media (forced-colors: active) {
border-top-color: transparent;
}
}
& .layout-selection,
& .inline-block-list {
& .ajax-progress,
& .ajax-progress-throbber {
position: absolute;
inset-block-start: 0;
inset-block-end: 0;
inset-inline-end: 0;
margin-block: auto;
}
}
}
@keyframes off-canvas-throbber-spin {
to {
transform: rotate(360deg);
}
}