@mirai/ui 1.0.139-beta → 1.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -180,6 +180,27 @@ button.button.busy .spinner {
|
|
|
180
180
|
left: calc(var(--mirai-ui-space-S) * 0.75);
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
@keyframes mirai-button-busy {
|
|
184
|
+
0% {
|
|
185
|
+
background-color: var(--mirai-ui-base);
|
|
186
|
+
}
|
|
187
|
+
50%,
|
|
188
|
+
100% {
|
|
189
|
+
background-color: var(--mirai-ui-button-color-active);
|
|
190
|
+
background-color: var();
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@keyframes mirai-button-secondary-busy {
|
|
195
|
+
0% {
|
|
196
|
+
background-color: var(--mirai-ui-button-background);
|
|
197
|
+
}
|
|
198
|
+
50%,
|
|
199
|
+
100% {
|
|
200
|
+
background-color: var(--mirai-ui-button-secondary-color-active);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
183
204
|
@media only screen and (min-width: 600px) {
|
|
184
205
|
.button:not(:disabled).secondary:hover:not(:active) {
|
|
185
206
|
box-shadow: inset 0 0 0 var(--mirai-ui-border-width) var(--mirai-ui-button-color-hover);
|
|
@@ -23,3 +23,15 @@
|
|
|
23
23
|
transform-origin: 0% 50%;
|
|
24
24
|
width: 100%;
|
|
25
25
|
}
|
|
26
|
+
|
|
27
|
+
@keyframes mirai-progress-indeterminate {
|
|
28
|
+
0% {
|
|
29
|
+
transform: translateX(0) scaleX(0);
|
|
30
|
+
}
|
|
31
|
+
50% {
|
|
32
|
+
transform: translateX(0) scaleX(1);
|
|
33
|
+
}
|
|
34
|
+
100% {
|
|
35
|
+
transform: translateX(100%) scaleX(0.5);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -267,36 +267,3 @@
|
|
|
267
267
|
--mirai-ui-tooltip-space: var(--mirai-ui-space-XS);
|
|
268
268
|
--mirai-ui-tooltip-max-width: calc(var(--mirai-ui-space-XXL) * 4);
|
|
269
269
|
}
|
|
270
|
-
|
|
271
|
-
@keyframes mirai-button-busy {
|
|
272
|
-
0% {
|
|
273
|
-
background-color: var(--mirai-ui-base);
|
|
274
|
-
}
|
|
275
|
-
50%,
|
|
276
|
-
100% {
|
|
277
|
-
background-color: var(--mirai-ui-button-color-active);
|
|
278
|
-
background-color: var();
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
@keyframes mirai-button-secondary-busy {
|
|
283
|
-
0% {
|
|
284
|
-
background-color: var(--mirai-ui-button-background);
|
|
285
|
-
}
|
|
286
|
-
50%,
|
|
287
|
-
100% {
|
|
288
|
-
background-color: var(--mirai-ui-button-secondary-color-active);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
@keyframes mirai-progress-indeterminate {
|
|
293
|
-
0% {
|
|
294
|
-
transform: translateX(0) scaleX(0);
|
|
295
|
-
}
|
|
296
|
-
50% {
|
|
297
|
-
transform: translateX(0) scaleX(1);
|
|
298
|
-
}
|
|
299
|
-
100% {
|
|
300
|
-
transform: translateX(100%) scaleX(0.5);
|
|
301
|
-
}
|
|
302
|
-
}
|