acud 0.0.66 → 0.0.67
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/acud.css +28 -9
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +3 -3
- package/dist/acud.js.map +1 -1
- package/dist/acud.min.css +1 -1
- package/dist/acud.min.css.map +1 -1
- package/dist/acud.min.js +6 -8
- package/dist/acud.min.js.map +1 -1
- package/es/modal/Modal.d.ts +0 -2
- package/es/modal/style/index.css +27 -7
- package/es/modal/style/index.less +23 -7
- package/es/modal/style/mixin.less +2 -2
- package/es/style/themes/dark/components/modal.less +1 -1
- package/es/style/themes/default/components/modal.less +1 -1
- package/es/tabs/src/TabNavList/index.js +2 -2
- package/es/tabs/style/index.css +0 -1
- package/es/tabs/style/index.less +0 -1
- package/lib/modal/Modal.d.ts +0 -2
- package/lib/modal/style/index.css +27 -7
- package/lib/modal/style/index.less +23 -7
- package/lib/modal/style/mixin.less +2 -2
- package/lib/style/themes/dark/components/modal.less +1 -1
- package/lib/style/themes/default/components/modal.less +1 -1
- package/lib/tabs/src/TabNavList/index.js +2 -2
- package/lib/tabs/style/index.css +0 -1
- package/lib/tabs/style/index.less +0 -1
- package/package.json +1 -1
package/dist/acud.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! acud v0.0.
|
|
1
|
+
/*! acud v0.0.67 */
|
|
2
2
|
/* color */
|
|
3
3
|
/* 默认颜色 */
|
|
4
4
|
/* 通用-icon */
|
|
@@ -3853,7 +3853,6 @@ a {
|
|
|
3853
3853
|
}
|
|
3854
3854
|
.acud-tabs-tab-active {
|
|
3855
3855
|
color: #2468F2;
|
|
3856
|
-
background: #FFFFFF;
|
|
3857
3856
|
}
|
|
3858
3857
|
.acud-tabs-tab-btn {
|
|
3859
3858
|
outline: none;
|
|
@@ -16633,26 +16632,46 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16633
16632
|
-webkit-overflow-scrolling: touch;
|
|
16634
16633
|
z-index: 1000;
|
|
16635
16634
|
}
|
|
16636
|
-
.acud-modal-sm
|
|
16635
|
+
.acud-modal-sm {
|
|
16637
16636
|
width: 520px;
|
|
16638
16637
|
min-height: 240px;
|
|
16639
16638
|
max-height: 560px;
|
|
16640
16639
|
}
|
|
16641
|
-
.acud-modal-
|
|
16640
|
+
.acud-modal-sm > .acud-modal-content {
|
|
16641
|
+
width: 100%;
|
|
16642
|
+
min-height: 240px;
|
|
16643
|
+
max-height: 560px;
|
|
16644
|
+
}
|
|
16645
|
+
.acud-modal-md {
|
|
16642
16646
|
width: 800px;
|
|
16643
16647
|
min-height: 400px;
|
|
16644
16648
|
max-height: 560px;
|
|
16645
16649
|
}
|
|
16646
|
-
.acud-modal-
|
|
16650
|
+
.acud-modal-md > .acud-modal-content {
|
|
16651
|
+
width: 100%;
|
|
16652
|
+
min-height: 400px;
|
|
16653
|
+
max-height: 560px;
|
|
16654
|
+
}
|
|
16655
|
+
.acud-modal-lg {
|
|
16647
16656
|
width: 1120px;
|
|
16648
16657
|
min-height: 480px;
|
|
16649
16658
|
max-height: 560px;
|
|
16650
16659
|
}
|
|
16651
|
-
.acud-modal-
|
|
16660
|
+
.acud-modal-lg > .acud-modal-content {
|
|
16661
|
+
width: 100%;
|
|
16662
|
+
min-height: 480px;
|
|
16663
|
+
max-height: 560px;
|
|
16664
|
+
}
|
|
16665
|
+
.acud-modal-xl {
|
|
16652
16666
|
width: 1200px;
|
|
16653
16667
|
min-height: 480px;
|
|
16654
16668
|
max-height: 560px;
|
|
16655
16669
|
}
|
|
16670
|
+
.acud-modal-xl > .acud-modal-content {
|
|
16671
|
+
width: 100%;
|
|
16672
|
+
min-height: 480px;
|
|
16673
|
+
max-height: 560px;
|
|
16674
|
+
}
|
|
16656
16675
|
.acud-modal-content {
|
|
16657
16676
|
position: relative;
|
|
16658
16677
|
background-color: #FFFFFF;
|
|
@@ -16708,13 +16727,14 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16708
16727
|
word-wrap: break-word;
|
|
16709
16728
|
}
|
|
16710
16729
|
.acud-modal-body {
|
|
16711
|
-
|
|
16730
|
+
margin: 16px 24px 24px;
|
|
16712
16731
|
font-size: 12px;
|
|
16713
16732
|
font-weight: 400;
|
|
16714
16733
|
line-height: 20px;
|
|
16715
16734
|
word-wrap: break-word;
|
|
16716
16735
|
color: #151B26;
|
|
16717
16736
|
flex: 1;
|
|
16737
|
+
overflow-y: auto;
|
|
16718
16738
|
}
|
|
16719
16739
|
.acud-modal-footer {
|
|
16720
16740
|
padding: 0 24px 24px;
|
|
@@ -16749,14 +16769,13 @@ li.acud-dropdown-menu-submenu-active:hover,
|
|
|
16749
16769
|
padding-right: 12px;
|
|
16750
16770
|
}
|
|
16751
16771
|
.acud-modal-dialogbox-content {
|
|
16752
|
-
width:
|
|
16772
|
+
width: 100%;
|
|
16753
16773
|
padding-left: 32px;
|
|
16754
16774
|
}
|
|
16755
16775
|
.acud-modal-dialogbox .acud-modal-title .acudicon {
|
|
16756
16776
|
font-size: 20px;
|
|
16757
16777
|
}
|
|
16758
16778
|
.acud-modal-dialogbox > .acud-modal-content {
|
|
16759
|
-
width: 400px;
|
|
16760
16779
|
min-height: 184px;
|
|
16761
16780
|
}
|
|
16762
16781
|
.acud-modal-dialogbox-warning .acud-modal-dialogbox-icon {
|