acud 0.0.61 → 0.0.64
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 +139 -14
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +37 -25
- 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 +2 -2
- package/dist/acud.min.js.map +1 -1
- package/es/alert/style/index.css +1 -1
- package/es/alert/style/index.less +150 -147
- package/es/alert/style/rtl.less +27 -27
- package/es/card/Card.js +4 -3
- package/es/card/style/index.css +88 -0
- package/es/card/style/index.less +8 -0
- package/es/date-picker/src/Picker.js +1 -1
- package/es/date-picker/src/RangePicker.js +1 -1
- package/es/date-picker/style/index.css +43 -11
- package/es/date-picker/style/index.less +13 -2
- package/es/date-picker/style/panel.less +32 -10
- package/es/dropdown/dropdown-button.js +8 -3
- package/es/dropdown/style/index.css +4 -0
- package/es/dropdown/style/index.less +4 -0
- package/es/menu/globalSilderBar.d.ts +1 -0
- package/es/menu/globalSilderBar.js +4 -5
- package/es/style/themes/default/components/card.less +3 -0
- package/es/style/themes/default/components/datePicker.less +1 -1
- package/es/tooltip/index.d.ts +0 -1
- package/es/tooltip/index.js +3 -8
- package/es/transfer/style/index.css +2 -1
- package/es/transfer/style/index.less +2 -1
- package/lib/alert/style/index.css +1 -1
- package/lib/alert/style/index.less +150 -147
- package/lib/alert/style/rtl.less +27 -27
- package/lib/card/Card.js +4 -3
- package/lib/card/style/index.css +88 -0
- package/lib/card/style/index.less +8 -0
- package/lib/date-picker/src/Picker.js +1 -1
- package/lib/date-picker/src/RangePicker.js +1 -1
- package/lib/date-picker/style/index.css +43 -11
- package/lib/date-picker/style/index.less +13 -2
- package/lib/date-picker/style/panel.less +32 -10
- package/lib/dropdown/dropdown-button.js +8 -3
- package/lib/dropdown/style/index.css +4 -0
- package/lib/dropdown/style/index.less +4 -0
- package/lib/menu/globalSilderBar.d.ts +1 -0
- package/lib/menu/globalSilderBar.js +4 -5
- package/lib/style/themes/default/components/card.less +3 -0
- package/lib/style/themes/default/components/datePicker.less +1 -1
- package/lib/tooltip/index.d.ts +0 -1
- package/lib/tooltip/index.js +3 -8
- package/lib/transfer/style/index.css +2 -1
- package/lib/transfer/style/index.less +2 -1
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
border: 1px solid @G8;
|
|
27
27
|
border-radius: @R3;
|
|
28
28
|
background-color: @G10;
|
|
29
|
+
overflow: hidden;
|
|
29
30
|
&-header {
|
|
30
31
|
display: flex;
|
|
31
32
|
flex: none;
|
|
@@ -113,6 +114,7 @@
|
|
|
113
114
|
border-radius: @R3;
|
|
114
115
|
background-color: @G10;
|
|
115
116
|
margin-left: @P * 4;
|
|
117
|
+
overflow: hidden;
|
|
116
118
|
&-header {
|
|
117
119
|
display: flex;
|
|
118
120
|
flex: none;
|
|
@@ -173,7 +175,6 @@
|
|
|
173
175
|
&.acuicon-outlined-close {
|
|
174
176
|
display: flex;
|
|
175
177
|
cursor: pointer;
|
|
176
|
-
font-size: 22px;
|
|
177
178
|
.basic-tp-config(@transfer-icon-default-tp);
|
|
178
179
|
}
|
|
179
180
|
}
|