mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 16:13:58 -07:00
* New: Webpack 4 * New: Gulp 4 * New: Transpile UI for old browsers Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
37 lines
559 B
CSS
37 lines
559 B
CSS
.button {
|
|
composes: button from '~Components/Link/Button.css';
|
|
|
|
position: relative;
|
|
}
|
|
|
|
.spinnerContainer {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: -100%;
|
|
display: inline-flex;
|
|
visibility: hidden;
|
|
transition: left $defaultSpeed;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|
|
|
|
.spinner {
|
|
z-index: 1;
|
|
}
|
|
|
|
.label {
|
|
position: relative;
|
|
left: 0;
|
|
transition: left $defaultSpeed, opacity $defaultSpeed;
|
|
}
|
|
|
|
.isSpinning {
|
|
.spinnerContainer {
|
|
left: 50%;
|
|
visibility: visible;
|
|
}
|
|
|
|
.label {
|
|
left: 100%;
|
|
visibility: hidden;
|
|
}
|
|
}
|