mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Initial Commit Rework
This commit is contained in:
parent
74a4cc048c
commit
95051cbd63
2483 changed files with 101351 additions and 111396 deletions
37
frontend/src/Components/Link/SpinnerButton.css
Normal file
37
frontend/src/Components/Link/SpinnerButton.css
Normal file
|
@ -0,0 +1,37 @@
|
|||
.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%;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue