@fox-js/foxui-pad 4.1.1-34 → 4.1.1-35
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.
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +2420 -2412
- package/dist/index.umd.js +1 -1
- package/dist/style.css +8 -12
- package/dist/style.js +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -3635,16 +3635,12 @@
|
|
|
3635
3635
|
margin-left: 16px;
|
|
3636
3636
|
}
|
|
3637
3637
|
|
|
3638
|
-
.fox-theme-dark .fox-infinite-loading .fox-infinite__bottom, .fox-theme-dark .fox-infinite-loading .fox-infinite__bottom .bottom-text {
|
|
3639
|
-
color: var(--fox-dark-color, var(--fox-white, #fff));
|
|
3640
|
-
}
|
|
3641
|
-
|
|
3642
3638
|
.fox-infinite-loading {
|
|
3643
3639
|
width: 100%;
|
|
3644
3640
|
display: block;
|
|
3645
3641
|
}
|
|
3646
3642
|
|
|
3647
|
-
.fox-infinite-
|
|
3643
|
+
.fox-infinite-loading__bottom {
|
|
3648
3644
|
width: 100%;
|
|
3649
3645
|
height: 50px;
|
|
3650
3646
|
line-height: 50px;
|
|
@@ -3654,13 +3650,13 @@
|
|
|
3654
3650
|
display: block;
|
|
3655
3651
|
}
|
|
3656
3652
|
|
|
3657
|
-
.fox-infinite-
|
|
3653
|
+
.fox-infinite-loading__bottom-box {
|
|
3658
3654
|
justify-content: center;
|
|
3659
3655
|
align-items: center;
|
|
3660
3656
|
display: flex;
|
|
3661
3657
|
}
|
|
3662
3658
|
|
|
3663
|
-
.fox-infinite-
|
|
3659
|
+
.fox-infinite-loading__bottom-box__img {
|
|
3664
3660
|
width: 15px;
|
|
3665
3661
|
height: 15px;
|
|
3666
3662
|
margin-right: 5px;
|
|
@@ -3671,7 +3667,7 @@
|
|
|
3671
3667
|
animation-fill-mode: both;
|
|
3672
3668
|
}
|
|
3673
3669
|
|
|
3674
|
-
.fox-infinite-
|
|
3670
|
+
.fox-infinite-loading__bottom-box__text {
|
|
3675
3671
|
color: var(--fox-text-color, var(--el-text-color-regular));
|
|
3676
3672
|
font-size: 12px;
|
|
3677
3673
|
}
|
|
@@ -3681,12 +3677,12 @@
|
|
|
3681
3677
|
overflow: hidden;
|
|
3682
3678
|
}
|
|
3683
3679
|
|
|
3684
|
-
.fox-pull-
|
|
3680
|
+
.fox-pull-refresh__container {
|
|
3685
3681
|
height: 100%;
|
|
3686
3682
|
position: relative;
|
|
3687
3683
|
}
|
|
3688
3684
|
|
|
3689
|
-
.fox-pull-
|
|
3685
|
+
.fox-pull-refresh__container-topbox {
|
|
3690
3686
|
text-align: center;
|
|
3691
3687
|
justify-content: center;
|
|
3692
3688
|
align-items: center;
|
|
@@ -3699,7 +3695,7 @@
|
|
|
3699
3695
|
transform: translateY(-100%);
|
|
3700
3696
|
}
|
|
3701
3697
|
|
|
3702
|
-
.fox-pull-
|
|
3698
|
+
.fox-pull-refresh__container-topbox-icon {
|
|
3703
3699
|
width: 16px;
|
|
3704
3700
|
height: 16px;
|
|
3705
3701
|
margin-right: 4px;
|
|
@@ -3710,7 +3706,7 @@
|
|
|
3710
3706
|
animation-fill-mode: both;
|
|
3711
3707
|
}
|
|
3712
3708
|
|
|
3713
|
-
.fox-pull-
|
|
3709
|
+
.fox-pull-refresh__container-topbox-text {
|
|
3714
3710
|
font-size: var(--fox-font-size-base, 14px);
|
|
3715
3711
|
color: var(--fox-text-color, var(--el-text-color-regular));
|
|
3716
3712
|
}
|
package/dist/style.js
CHANGED