Remove loading.scss

fix-error-messages
danidfra 2024-11-15 12:27:01 -03:00
rodzic 5725cc4a80
commit c8187918d3
5 zmienionych plików z 44 dodań i 181 usunięć

Wyświetl plik

@ -13,10 +13,10 @@
</head>
<body class="theme-mode-light no-reduce-motion">
<div id="soapbox" class="h-full">
<div class="loading-indicator-wrapper">
<div class="loading-indicator">
<div class="loading-indicator__container">
<div class="loading-indicator__figure"></div>
<div class="h-screen w-screen flex justify-center items-center">
<div class="loading-indicator text-gray-50 text-xs uppercase flex flex-col justify-center overflow-visible h-screen w-screen items-center">
<div class="size-10 relative">
<div class="animate-loader-figure absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 size-12 rounded-full bg-transparent border-6 border-solid border-gray-200"></div>
</div>
</div>
</div>

Wyświetl plik

@ -1,4 +1,3 @@
@use 'loading';
@use 'ui';
@use 'emoji-picker';
@use 'accessibility';

Wyświetl plik

@ -1,176 +0,0 @@
.loading-indicator-wrapper {
@apply h-screen w-screen flex justify-center items-center;
}
.loading-indicator {
@apply text-gray-50 text-xs uppercase flex flex-col items-center justify-center overflow-visible;
}
.loading-indicator__container {
@apply w-10 h-10 relative;
}
.loading-indicator__figure {
@apply absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-12 h-12 rounded-full bg-transparent;
border: 0 solid;
border-width: 6px;
border-color: #e5e7eb;
}
.no-reduce-motion .loading-indicator span {
animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.no-reduce-motion .loading-indicator__figure {
animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.loading-indicator-wrapper .loading-indicator {
@apply h-screen w-screen items-center;
&__figure {
@apply border-gray-200;
}
}
@keyframes loader-figure {
0% {
@apply bg-gray-200 w-0 h-0;
}
29% {
@apply bg-gray-200;
}
30% {
@apply w-12 h-12 bg-transparent opacity-100;
border-width: 6px;
}
100% {
@apply w-12 h-12 border-0 opacity-0 bg-transparent;
}
}
@keyframes loader-label {
0% { opacity: 0.25; }
30% { opacity: 1; }
100% { opacity: 0.25; }
}
@keyframes heartbeat {
0% {
transform: scale(1);
animation-timing-function: ease-out;
}
10% {
transform: scale(0.91);
animation-timing-function: ease-in;
}
17% {
transform: scale(0.98);
animation-timing-function: ease-out;
}
33% {
transform: scale(0.87);
animation-timing-function: ease-in;
}
45% {
transform: scale(1);
animation-timing-function: ease-out;
}
}
.no-reduce-motion .pulse-loading {
transform-origin: center center;
animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes shake-bottom {
0%,
100% {
transform: rotate(0deg);
transform-origin: 50% 100%;
}
10% {
transform: rotate(2deg);
}
20%,
40%,
60% {
transform: rotate(-4deg);
}
30%,
50%,
70% {
transform: rotate(4deg);
}
80% {
transform: rotate(-2deg);
}
90% {
transform: rotate(2deg);
}
}
.no-reduce-motion .shake-bottom {
transform-origin: 50% 100%;
animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) 2s 2 both;
}
.load-more {
@apply block w-full m-0 p-4 border-0 box-border text-gray-900 bg-transparent;
.svg-icon {
@apply mx-auto;
}
}
.regeneration-indicator {
@apply text-gray-900;
text-align: center;
font-size: 16px;
font-weight: 500;
cursor: default;
display: flex;
flex: 1 1 auto;
align-items: center;
justify-content: center;
padding: 20px;
border-radius: 10px;
@media screen and (width <= 580px) {
border-radius: 0;
}
& > div {
width: 100%;
background: transparent;
padding-top: 0;
}
&__label {
strong {
@apply block mb-2.5 text-gray-900;
}
span {
font-size: 15px;
font-weight: 400;
}
}
}
.ptr,
.ptr__children {
overflow: visible !important;
}

Wyświetl plik

@ -215,3 +215,9 @@
}
}
@layer components {
.loading-indicator span {
@apply animate-loader-label;
}
}

Wyświetl plik

@ -69,6 +69,8 @@ const config: Config = {
'greentext': true,
}),
animation: {
'loader-figure': 'loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1)',
'loader-label': 'loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1)',
fade: 'fade 150ms linear',
'sonar-scale-4': 'sonar-scale-4 3s linear infinite',
'sonar-scale-3': 'sonar-scale-3 3s 0.5s linear infinite',
@ -78,6 +80,38 @@ const config: Config = {
'leave': 'leave 150ms ease-in forwards',
},
keyframes: {
'loader-figure': {
'0%': {
backgroundColor: 'rgb(229, 231, 235)',
width: '0px',
height: '0px',
},
'29%': {
backgroundColor: 'rgb(229, 231, 235)',
},
'30%': {
width: '3rem',
height: '3rem',
backgroundColor: 'transparent',
opacity: '1',
borderWidth: '6px',
},
'100%': {
width: '3rem',
height: '3rem',
borderWidth: '0',
opacity: '0',
backgroundColor: 'transparent',
},
},
'loader-label': {
'0%': { opacity: '0.25' },
'30%': { opacity: '1' },
'100%': { opacity: '0.25' },
},
fade: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },