cfel-base-components 2.5.76 → 2.5.78

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.
@@ -1,943 +0,0 @@
1
- $menuPrefixCls: rc-menu;
2
-
3
-
4
-
5
- ul {
6
- list-style: none;
7
- padding: 0;
8
- margin: 0;
9
- }
10
-
11
- .ant-popover-inner {
12
- padding: 8px !important;
13
- }
14
-
15
- .menu-popover {
16
- width: 168px;
17
- font-weight: 400;
18
- font-size: 14px;
19
- color: #04073b;
20
- text-align: left;
21
- font-style: normal;
22
- cursor: pointer;
23
-
24
- .menu-item-icon {
25
- background: rgba(255, 255, 255, 0.85);
26
- }
27
-
28
- .sub-list {
29
- width: 100%;
30
- display: flex;
31
- justify-content: space-between;
32
- }
33
-
34
- .sub-li {
35
- width: 152px;
36
- height: 24px;
37
- overflow: hidden;
38
- text-overflow: ellipsis;
39
- font-weight: 400;
40
- font-size: 14px;
41
- padding: 6px 8px;
42
-
43
- &:hover {
44
- color: #185dfe;
45
- }
46
-
47
- &:not(:first-child) {
48
- margin-top: 4px;
49
- }
50
- }
51
-
52
- .grand-li {
53
- width: 130px;
54
- height: 24px;
55
- overflow: hidden;
56
- text-overflow: ellipsis;
57
- font-weight: 400;
58
- font-size: 14px;
59
- padding: 6px 8px;
60
-
61
- &:hover {
62
- color: #185dfe;
63
- }
64
-
65
- &:not(:first-child) {
66
- margin-top: 4px;
67
- }
68
- }
69
-
70
- .sub-item-selected {
71
- font-weight: 500;
72
- color: #3d76ec;
73
- background: rgba(61, 118, 236, 0.1);
74
- border-radius: 4px;
75
- }
76
- }
77
-
78
- .layout-menu-console {
79
- border-radius: 16px;
80
- height: calc(100% - 107px);
81
- overflow-y: scroll;
82
-
83
- .menu-console {
84
- padding: 0;
85
- margin: 0;
86
- list-style: none;
87
- cursor: pointer;
88
- position: relative;
89
- z-index: 90;
90
- color: rgba(255, 255, 255, 0.25);
91
-
92
- .#{$menuPrefixCls}-submenu-arrow {
93
- display: inline-block;
94
- position: absolute;
95
- top: 52%;
96
- right: 16px;
97
- width: 16px;
98
- height: 16px;
99
- transform: translateY(0);
100
- transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
101
- // 当菜单收起时隐藏箭头
102
- .ant-layout-sider-collapsed & {
103
- display: none;
104
- }
105
-
106
- &::before,
107
- &::after {
108
- position: absolute;
109
- width: 6px;
110
- height: 1px;
111
- scale: 1.25;
112
- background: rgba(255, 255, 255, 0.65);
113
- border-radius: 2px;
114
- transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
115
- content: '';
116
- }
117
-
118
- &::before {
119
- transform: rotate(-45deg) translateX(2.5px);
120
- }
121
-
122
- &::after {
123
- transform: rotate(45deg) translateX(-2.5px);
124
- }
125
-
126
- // RTL support
127
- &.#{$menuPrefixCls}-rtl,
128
- .#{$menuPrefixCls}-submenu-rtl & {
129
- right: auto;
130
- left: 16px;
131
- }
132
- }
133
-
134
- .#{$menuPrefixCls}-submenu-open > .#{$menuPrefixCls}-submenu-title {
135
- .#{$menuPrefixCls}-submenu-arrow {
136
- transform: translateY(-3px);
137
- &::before {
138
- transform: rotate(45deg) translateX(2.5px);
139
- }
140
- &::after {
141
- transform: rotate(-45deg) translateX(-2.5px);
142
- }
143
- }
144
- }
145
-
146
- .#{$menuPrefixCls}-submenu-selected {
147
- > .#{$menuPrefixCls}-submenu-title {
148
- .#{$menuPrefixCls}-submenu-arrow {
149
- &::before,
150
- &::after {
151
- background-color: rgba(255, 255, 255);
152
- }
153
- }
154
- }
155
- }
156
-
157
- > li {
158
- .first-li {
159
- &:hover {
160
- .menu-item-icon {
161
- color: #fff;
162
- font-weight: 500;
163
- }
164
-
165
- .menu-item-label {
166
- color: #fff;
167
- font-weight: 500;
168
- }
169
- }
170
- }
171
-
172
- &:hover {
173
- > .menu-item-content {
174
- .menu-item-icon,
175
- .menu-item-label {
176
- color: #fff;
177
- font-weight: 500;
178
- }
179
- }
180
- }
181
- }
182
-
183
- .rc-menu-submenu {
184
- &:hover {
185
- > .rc-menu-submenu-title {
186
- .menu-item-icon,
187
- .menu-item-label {
188
- color: #fff;
189
- font-weight: 500;
190
- }
191
-
192
- .#{$menuPrefixCls}-submenu-arrow {
193
- &::before,
194
- &::after {
195
- background: #fff;
196
- }
197
- }
198
- }
199
- }
200
- }
201
-
202
- .rc-menu-submenu {
203
- .rc-menu-submenu-title {
204
- position: relative;
205
-
206
- .menu-item-content {
207
- .menu-item-icon,
208
- .menu-item-label {
209
- transition: all 0.3s ease-in-out;
210
- }
211
- }
212
-
213
- &:hover {
214
- .menu-item-content {
215
- .menu-item-icon,
216
- .menu-item-label {
217
- color: #fff;
218
- font-weight: 500;
219
- }
220
- }
221
-
222
- .#{$menuPrefixCls}-submenu-arrow {
223
- &::before,
224
- &::after {
225
- background: #fff;
226
- }
227
- }
228
- }
229
- }
230
-
231
- .rc-menu-item {
232
- &:hover {
233
- .menu-item-content {
234
- .menu-item-icon,
235
- .menu-item-label {
236
- color: #fff;
237
- font-weight: 500;
238
- }
239
- }
240
- }
241
- }
242
- }
243
-
244
- .rc-menu-submenu-title {
245
- position: relative;
246
- }
247
-
248
- .rc-menu-submenu {
249
- position: relative;
250
- }
251
-
252
- .menu-item-content {
253
- font-weight: 400;
254
- font-size: 14px;
255
- line-height: 50px;
256
- text-align: left;
257
- }
258
-
259
- .sub-menu-item-label {
260
- padding-left: 11px;
261
- display: flex;
262
- }
263
-
264
- .menu-item-icon {
265
- display: inline-block;
266
- height: 22px;
267
- width: 22px;
268
- color: rgba(255, 255, 255, 0.85);
269
- }
270
-
271
- .menu-item-label {
272
- display: inline-block;
273
- padding-left: 12px;
274
- color: #ffffffd9;
275
- border: 1px solid transparent;
276
- font-weight: 400;
277
- }
278
-
279
- .submenu-selected {
280
- color: #fff !important;
281
- font-weight: 500;
282
- }
283
-
284
- .sub-li {
285
- position: relative;
286
- z-index: 9;
287
- line-height: 52px;
288
- width: 100%;
289
-
290
- .menu-item-content {
291
- width: 100%;
292
- padding-right: 24px;
293
-
294
- .menu-item-label {
295
- width: 100%;
296
- display: flex;
297
- align-items: center;
298
- justify-content: space-between;
299
- }
300
- }
301
-
302
- &::before {
303
- content: '';
304
- position: absolute;
305
- left: 31px;
306
- top: 24px;
307
- width: 5px;
308
- height: 5px;
309
- background: #8f9cec;
310
- border-radius: 100%;
311
- z-index: 1;
312
- }
313
-
314
- &::after {
315
- content: '';
316
- position: absolute;
317
- left: 32.9px;
318
- top: 0 !important;
319
- width: 1px;
320
- height: 100%;
321
- background: #929df7;
322
- z-index: 0;
323
- }
324
-
325
- &:only-child::after {
326
- display: none;
327
- }
328
-
329
- &:last-child::after {
330
- height: 50%;
331
- }
332
-
333
- &:first-child::after {
334
- top: 24px !important;
335
- }
336
-
337
- &.rc-menu-submenu-selected {
338
- &::before {
339
- background: rgba(255, 255, 255);
340
- }
341
- }
342
-
343
- &.rc-menu-item-selected {
344
- &::before {
345
- background: rgba(255, 255, 255);
346
- }
347
- }
348
-
349
- &:not(.rc-menu-submenu) {
350
- height: 52px;
351
- display: flex;
352
- align-items: center;
353
- box-shadow: 0px 0px 30px 0px transparent;
354
-
355
- &.rc-menu-item-selected {
356
- .menu-item-label {
357
- color: #fff;
358
- font-weight: 500;
359
- display: flex;
360
- align-items: center;
361
- padding-left: 12px;
362
- width: 100%;
363
- height: 40px;
364
- background: rgba(255, 255, 255, 0.05);
365
- box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
366
- border-radius: 10px;
367
- border: 1px solid rgba(255, 255, 255, 0.1);
368
- backdrop-filter: blur(10px);
369
- transition: all 0.3s ease-in-out;
370
- }
371
- }
372
- }
373
- }
374
-
375
- .grand-li {
376
- background: #3568b7;
377
- position: relative;
378
- z-index: 9;
379
- line-height: 52px;
380
- display: flex;
381
- align-items: center;
382
- margin-left: 2px;
383
- width: 252px;
384
-
385
- &:last-child {
386
- box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.05);
387
- }
388
-
389
- &::before {
390
- content: '';
391
- position: absolute;
392
- left: 49px;
393
- top: 50%;
394
- width: 5px;
395
- height: 5px;
396
- background: #8f9cec;
397
- border-radius: 100%;
398
- transform: translateY(-50%);
399
- z-index: 2;
400
- }
401
-
402
- &::after {
403
- content: '';
404
- position: absolute;
405
- left: 51px;
406
- top: 0;
407
- width: 1px;
408
- height: 100%;
409
- background: #929df7;
410
- z-index: 1;
411
- }
412
-
413
- &:only-child::after {
414
- display: none;
415
- }
416
-
417
- &:last-child::after {
418
- height: 50%;
419
- }
420
-
421
- &:first-child::after {
422
- top: 50% !important;
423
- }
424
-
425
- &.rc-menu-item-selected {
426
- .menu-item-content {
427
- width: 100%;
428
- padding-right: 24px;
429
- height: 52px;
430
- display: flex;
431
- align-items: center;
432
- }
433
- .menu-item-label {
434
- display: flex;
435
- align-items: center;
436
- padding-left: 12px;
437
- width: 100%;
438
- height: 40px;
439
- background: rgba(255, 255, 255, 0.05);
440
- box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
441
- border-radius: 10px;
442
- border: 1px solid rgba(255, 255, 255, 0.1);
443
- backdrop-filter: blur(10px);
444
- transition: all 0.3s ease-in-out;
445
- }
446
-
447
- &::before {
448
- background: rgba(255, 255, 255);
449
- }
450
- }
451
-
452
- &:hover {
453
- > .menu-item-content {
454
- .menu-item-icon,
455
- .menu-item-label {
456
- color: #fff;
457
- }
458
- }
459
- }
460
- }
461
- }
462
-
463
- .menu-console-collapsed {
464
- display: flex;
465
- flex-direction: column;
466
- align-items: center;
467
- list-style: none;
468
- cursor: pointer;
469
- position: relative;
470
- z-index: 20;
471
- font-weight: 400;
472
-
473
- .menu-item-icon {
474
- display: inline-block;
475
- height: 22px;
476
- color: rgba(255, 255, 255, 0.85);
477
-
478
- &:hover {
479
- color: #fff;
480
- font-weight: 500;
481
- }
482
- }
483
-
484
- .menu-item-content {
485
- font-weight: 400;
486
- font-size: 14px;
487
- margin-top: 30px;
488
- line-height: 24px;
489
- text-align: left;
490
- }
491
-
492
- .submenu-selected {
493
- color: #fff;
494
- font-weight: 500;
495
- }
496
- }
497
-
498
- .cpc-icon {
499
- display: inline-block;
500
- height: 22px;
501
- width: 22px;
502
- }
503
- }
504
-
505
- $header-height: 62px;
506
- $base-color: #c6538c;
507
-
508
- body {
509
- overflow: hidden;
510
- }
511
-
512
- .layout-warps-console {
513
- display: flex;
514
- padding: 12px;
515
- background: linear-gradient(223deg, #fef8ff 0%, #eceefe 29%, #fff9fe 100%) !important;
516
- box-shadow: inset 0px -1px 0px 0px #edeefd !important;
517
-
518
- ::-webkit-scrollbar {
519
- display: none;
520
- }
521
-
522
- .trigger-console {
523
- margin-right: 16px;
524
- width: 30px;
525
- height: 30px;
526
- background: rgba(255, 255, 255, 0.05);
527
- box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
528
- border-radius: 4px;
529
- border: 1px solid rgba(255, 255, 255, 0.1);
530
- backdrop-filter: blur(10px);
531
- display: flex;
532
- justify-content: center;
533
- align-items: center;
534
- }
535
-
536
- .close-trigger-console {
537
- position: relative;
538
- z-index: 20;
539
- margin-top: 24px;
540
- width: 30px;
541
- height: 30px;
542
- background: rgba(255, 255, 255, 0.05);
543
- box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
544
- border-radius: 4px;
545
- border: 1px solid rgba(255, 255, 255, 0.1);
546
- backdrop-filter: blur(10px);
547
- display: flex;
548
- justify-content: center;
549
- align-items: center;
550
- }
551
-
552
- .search-console {
553
- position: relative;
554
- z-index: 11;
555
- height: 40px;
556
- color: #fff;
557
- background: #5b6ecf;
558
- box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.05), inset 0px -2px 0px 0px #ffffff22;
559
- border-radius: 10px;
560
- background-size: 50%;
561
- background-position-x: right;
562
-
563
- &:hover {
564
- background: rgba(0, 0, 0, 0.05);
565
- }
566
-
567
- .search-bg-mask {
568
- position: absolute;
569
- top: 0;
570
- right: 0;
571
- width: 93px;
572
- height: 38px;
573
-
574
- img {
575
- width: 93px;
576
- height: 37px;
577
- }
578
- }
579
-
580
- .search-input {
581
- width: 100%;
582
- height: 100%;
583
- background: transparent;
584
- border: none;
585
- outline: none;
586
- padding-left: 45px;
587
- line-height: 32px;
588
- font-size: 14px;
589
- color: #ffffff;
590
-
591
- &::placeholder {
592
- color: rgba(255, 255, 255, 0.65);
593
- }
594
-
595
- // 为了兼容不同浏览器
596
- &::-webkit-input-placeholder {
597
- color: rgba(255, 255, 255, 0.45);
598
- }
599
-
600
- &::-moz-placeholder {
601
- color: rgba(255, 255, 255, 0.45);
602
- }
603
- }
604
-
605
- .search-icon {
606
- position: absolute;
607
- left: 12px;
608
- top: 11px;
609
- }
610
-
611
- .search-command {
612
- position: absolute;
613
- right: 4px;
614
- top: 4px;
615
- width: 40px;
616
- height: 30px;
617
- background: #5b6ed0;
618
- border-radius: 8px;
619
- border: 1px solid #6d7cd5;
620
- backdrop-filter: blur(10px);
621
- display: flex;
622
- justify-content: center;
623
- align-items: center;
624
- font-size: 14px;
625
- color: rgba(255, 255, 255, 0.65);
626
- line-height: 17px;
627
- }
628
- }
629
-
630
- .search-mobile-console {
631
- width: 40px;
632
- height: 40px;
633
- background: #f8f8fb;
634
- box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.05), inset 0px -2px 0px 0px #ffffff;
635
- border-radius: 10px;
636
- backdrop-filter: blur(10px);
637
- padding-top: 11px;
638
- cursor: pointer;
639
- }
640
- }
641
-
642
- .layout-side-mask1-console {
643
- z-index: 9;
644
- background: white;
645
- border: 2px solid #ffffff;
646
- position: absolute;
647
- top: 0;
648
- left: 0;
649
- width: 100%;
650
- height: 100%;
651
- border-radius: 16px;
652
- }
653
-
654
- .layout-side-mask2-console {
655
- z-index: 10;
656
- background: linear-gradient(227deg, #7856e6 0%, #6a6ed2 0%, #0271c3 100%) !important;
657
- border: 2px solid #ffffff;
658
- position: absolute;
659
- top: 0;
660
- left: 0;
661
- width: 100%;
662
- height: 100%;
663
- border-radius: 16px;
664
- }
665
-
666
- .layout-side-console {
667
- background: transparent !important;
668
- height: calc(100vh - 24px) !important;
669
- user-select: none;
670
- border: 2px solid white;
671
- border-radius: 16px;
672
- padding-top: 24px;
673
-
674
- .header-logo-console {
675
- padding-left: 16px;
676
- display: flex;
677
- justify-content: space-between;
678
- cursor: pointer;
679
- height: 30px;
680
- position: relative;
681
- z-index: 11;
682
-
683
- .logo-sub {
684
- width: 31px;
685
- height: 30px;
686
- }
687
-
688
- .logo-base {
689
- height: 30px;
690
- width: 105px;
691
- }
692
- }
693
- }
694
-
695
- .layout-header-console {
696
- z-index: 1;
697
- height: $header-height;
698
- background: linear-gradient(223deg, #faf8ff 0%, #eeecfe 29%, #ffffff 100%);
699
- border-radius: 16px;
700
- border: 1px solid #ffffff;
701
- position: relative;
702
- display: flex;
703
- justify-content: flex-start;
704
- align-items: center;
705
-
706
- .app-name {
707
- margin-left: 24px;
708
- font-weight: 500;
709
- color: rgba(0, 0, 0, 0.65);
710
- }
711
-
712
- .layout-header-fill-console {
713
- flex: 1;
714
- }
715
-
716
- .layout-header-actions-console {
717
- cursor: pointer;
718
- display: flex;
719
- justify-content: flex-start;
720
- align-items: center;
721
- height: 100%;
722
- max-width: 400px;
723
- z-index: 2;
724
- gap: 24px;
725
-
726
- .actions-item {
727
- line-height: 22px;
728
- font-size: 14px;
729
- cursor: pointer;
730
-
731
- display: flex;
732
- justify-content: center;
733
- align-items: center;
734
- }
735
- }
736
-
737
- .layout-header-user-console {
738
- height: 48px;
739
- display: flex;
740
- font-size: 14px;
741
- justify-content: flex-start;
742
- align-items: center;
743
- z-index: 2;
744
- transition: all 0.3s;
745
- padding: 4px 12px;
746
- margin: 0 12px;
747
- border-radius: 6px;
748
- cursor: pointer;
749
-
750
- &:hover {
751
- background: rgba(0, 0, 0, 0.06);
752
- }
753
-
754
- .avatar {
755
- width: 40px;
756
- height: 40px;
757
- border-radius: 50%;
758
- margin-right: 12px;
759
- }
760
- }
761
- }
762
-
763
- .layout-main-console {
764
- flex: 1;
765
- height: 100%;
766
- padding-left: 12px;
767
- overflow: auto;
768
- }
769
-
770
- .layout-content-console {
771
- width: 100%;
772
- height: calc(100vh - #{$header-height} - 12px - 24px);
773
- overflow: auto;
774
- margin-top: 12px;
775
- border-radius: 16px;
776
- }
777
-
778
- .rc-menu-collapse {
779
- overflow: hidden;
780
- transition: height 0.3s ease-out;
781
- }
782
-
783
- .rc-menu-hidden {
784
- height: 0;
785
- overflow: hidden;
786
- }
787
-
788
- .lists-console {
789
- position: absolute;
790
- z-index: 1000;
791
- width: 88%;
792
- background: linear-gradient(227deg, #556ec611 0%, #556ec6aa 100%);
793
- color: #fff;
794
- border-radius: 16px;
795
- box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
796
- backdrop-filter: blur(10px);
797
- padding: 16px;
798
- border: 1px solid rgba(255, 255, 255, 0.08);
799
- animation: dropDown 0.2s ease-out;
800
-
801
- .ant-list-header {
802
- padding: 0 0 12px;
803
- font-weight: 500;
804
- font-size: 14px;
805
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
806
- display: flex;
807
- align-items: center;
808
- justify-content: space-between;
809
- }
810
-
811
- .ant-list-item {
812
- color: #fff;
813
- cursor: pointer;
814
- padding: 10px 12px;
815
- margin: 4px 0;
816
- border-radius: 8px;
817
- transition: all 0.2s ease;
818
- display: flex;
819
- align-items: center;
820
- gap: 12px;
821
- font-size: 14px;
822
-
823
- &:hover {
824
- background: rgba(255, 255, 255, 0.08);
825
- transform: translateX(2px);
826
- }
827
-
828
- .search-item-icon {
829
- color: rgba(255, 255, 255, 0.9);
830
- font-size: 16px;
831
- }
832
-
833
- .search-item-content {
834
- flex: 1;
835
- }
836
-
837
- .search-item-title {
838
- font-size: 14px;
839
- color: rgba(255, 255, 255, 0.95);
840
- }
841
-
842
- .search-item-description {
843
- font-size: 12px;
844
- color: rgba(255, 255, 255, 0.6);
845
- margin-top: 2px;
846
- }
847
-
848
- .search-item-shortcut {
849
- font-size: 12px;
850
- color: rgba(255, 255, 255, 0.5);
851
- background: rgba(255, 255, 255, 0.1);
852
- padding: 2px 6px;
853
- border-radius: 4px;
854
- }
855
- }
856
- }
857
-
858
- .#{$menuPrefixCls} {
859
- &-zoom-enter,
860
- &-zoom-appear {
861
- opacity: 0;
862
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
863
- animation-play-state: paused;
864
- }
865
-
866
- &-zoom-leave {
867
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
868
- animation-play-state: paused;
869
- }
870
-
871
- &-zoom-enter#{&}-zoom-enter-active,
872
- &-zoom-appear#{&}-zoom-appear-active {
873
- animation-name: rcMenuOpenZoomIn;
874
- animation-play-state: running;
875
- }
876
-
877
- &-zoom-leave#{&}-zoom-leave-active {
878
- animation-name: rcMenuOpenZoomOut;
879
- animation-play-state: running;
880
- }
881
-
882
- &-zoom-enter,
883
- &-zoom-appear,
884
- &-zoom-leave {
885
- .#{$menuPrefixCls}-submenu-rtl & {
886
- transform-origin: top right !important;
887
- }
888
- }
889
- }
890
- // 箭头向下样式
891
- .down {
892
- transform: rotate(0deg);
893
- transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
894
- }
895
-
896
- // 箭头向上样式
897
- .up {
898
- transform: rotate(180deg);
899
- transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
900
- }
901
-
902
- // 箭头切换动画
903
- .arrow-transition {
904
- transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
905
-
906
- &.down-to-up {
907
- animation: colorRotateUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
908
- }
909
-
910
- &.up-to-down {
911
- animation: colorRotateDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
912
- }
913
- }
914
-
915
- @keyframes colorRotateUp {
916
- 0% {
917
- transform: rotate(0deg) scale(1);
918
- color: currentColor;
919
- }
920
- 50% {
921
- transform: rotate(90deg) scale(1.2);
922
- color: #1890ff;
923
- }
924
- 100% {
925
- transform: rotate(180deg) scale(1);
926
- color: currentColor;
927
- }
928
- }
929
-
930
- @keyframes colorRotateDown {
931
- 0% {
932
- transform: rotate(180deg) scale(1);
933
- color: currentColor;
934
- }
935
- 50% {
936
- transform: rotate(90deg) scale(1.2);
937
- color: #1890ff;
938
- }
939
- 100% {
940
- transform: rotate(0deg) scale(1);
941
- color: currentColor;
942
- }
943
- }