Compare commits
1 Commits
2601261358
...
ab27ebfadf
| Author | SHA1 | Date | |
|---|---|---|---|
| ab27ebfadf |
@@ -1 +1 @@
|
|||||||
2601261358
|
261261420
|
||||||
|
|||||||
@@ -1326,6 +1326,17 @@ button span {
|
|||||||
|
|
||||||
.progress-indeterminate .progress-fill {
|
.progress-indeterminate .progress-fill {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
background: linear-gradient(
|
||||||
|
90deg,
|
||||||
|
rgba(255, 255, 255, 0),
|
||||||
|
var(--accent-2),
|
||||||
|
var(--accent-3),
|
||||||
|
rgba(255, 255, 255, 0)
|
||||||
|
);
|
||||||
|
background-size: 200% 100%;
|
||||||
animation: progress-indeterminate 1.6s ease-in-out infinite;
|
animation: progress-indeterminate 1.6s ease-in-out infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1509,13 +1520,10 @@ button span {
|
|||||||
|
|
||||||
@keyframes progress-indeterminate {
|
@keyframes progress-indeterminate {
|
||||||
0% {
|
0% {
|
||||||
transform: translateX(-50%);
|
background-position: 200% 0;
|
||||||
}
|
|
||||||
50% {
|
|
||||||
transform: translateX(120%);
|
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
transform: translateX(-50%);
|
background-position: -200% 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user