@cloudbase/weda-ui-mp 3.7.3 → 3.7.5
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/components/form/select/dropdown-select/index.js +59 -39
- package/components/form/select/index.js +4 -0
- package/components/form/select/index.wxml +1 -0
- package/components/form/selectMultiple/dropdown-select/index.js +14 -2
- package/components/form/selectMultiple/index.js +4 -0
- package/components/form/selectMultiple/index.wxml +15 -1
- package/components/form/uploader/weui-uploader.js +6 -11
- package/components/form-field-behavior/form-field-behavior.js +0 -1
- package/components/form-field-behavior/item-behavior.js +4 -0
- package/components/wd-form-arr/wd-form-obj.wxss +43 -8
- package/components/wd-form-obj/wd-form-obj.wxss +43 -8
- package/components/wd-input-number/index.js +10 -6
- package/components/wd-menu-layout/wd-menu-layout.wxss +10 -0
- package/components/wd-menu-list/wd-menu-list.wxss +10 -0
- package/components/wd-modal/wd-modal.wxss +3 -2
- package/components/wd-select/index.wxml +1 -0
- package/components/wd-select-multiple/index.wxml +1 -0
- package/package.json +1 -1
|
@@ -48,6 +48,10 @@ Component({
|
|
|
48
48
|
type: Boolean,
|
|
49
49
|
value: true,
|
|
50
50
|
},
|
|
51
|
+
staticSearchable: {
|
|
52
|
+
type: Boolean,
|
|
53
|
+
value: true,
|
|
54
|
+
},
|
|
51
55
|
},
|
|
52
56
|
data: {
|
|
53
57
|
height: '780rpx',
|
|
@@ -80,8 +84,14 @@ Component({
|
|
|
80
84
|
bindinput: function (event) {
|
|
81
85
|
const value = event.detail.value;
|
|
82
86
|
|
|
83
|
-
const {
|
|
84
|
-
|
|
87
|
+
const {
|
|
88
|
+
option,
|
|
89
|
+
loadStatus,
|
|
90
|
+
isTurnPages,
|
|
91
|
+
_needFetch,
|
|
92
|
+
ignoreCase,
|
|
93
|
+
staticSearchable,
|
|
94
|
+
} = this.properties;
|
|
85
95
|
if (value === '' || value === this.data.searchValue) {
|
|
86
96
|
this.setData({
|
|
87
97
|
searchValue: value,
|
|
@@ -109,8 +119,9 @@ Component({
|
|
|
109
119
|
searchValue: value,
|
|
110
120
|
pageNo: 1,
|
|
111
121
|
});
|
|
112
|
-
} else {
|
|
122
|
+
} else if (staticSearchable) {
|
|
113
123
|
// 本地搜索
|
|
124
|
+
|
|
114
125
|
const searchOption = option.filter((item) => {
|
|
115
126
|
if (ignoreCase) {
|
|
116
127
|
return String(item.label)
|
|
@@ -223,45 +234,54 @@ Component({
|
|
|
223
234
|
},
|
|
224
235
|
},
|
|
225
236
|
observers: {
|
|
226
|
-
'option, loadStatus, searchOption, searchStatus, _needFetch':
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
index =
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
showOption: option,
|
|
250
|
-
isFinish: true,
|
|
251
|
-
index: index,
|
|
252
|
-
clickIndex: index,
|
|
253
|
-
});
|
|
254
|
-
} else {
|
|
255
|
-
if (_needFetch) {
|
|
256
|
-
// 只有needFetch 才设置searchOption
|
|
237
|
+
'option, loadStatus, searchOption, searchStatus, _needFetch, staticSearchable':
|
|
238
|
+
function (
|
|
239
|
+
option,
|
|
240
|
+
loadStatus,
|
|
241
|
+
searchOption,
|
|
242
|
+
searchStatus,
|
|
243
|
+
_needFetch,
|
|
244
|
+
staticSearchable
|
|
245
|
+
) {
|
|
246
|
+
if (this.data.searchValue === '') {
|
|
247
|
+
// 初始化会走到这
|
|
248
|
+
const { chooseIndexValue } = this.properties;
|
|
249
|
+
let index = -1;
|
|
250
|
+
if (chooseIndexValue !== '') {
|
|
251
|
+
index = option.findIndex((item) => item.value === chooseIndexValue);
|
|
252
|
+
} else {
|
|
253
|
+
option.some((item, i) => {
|
|
254
|
+
if (!item?.disabled) {
|
|
255
|
+
index = i;
|
|
256
|
+
return true;
|
|
257
|
+
}
|
|
258
|
+
});
|
|
259
|
+
}
|
|
257
260
|
this.setData({
|
|
258
|
-
status:
|
|
259
|
-
showOption:
|
|
261
|
+
status: loadStatus,
|
|
262
|
+
showOption: option,
|
|
260
263
|
isFinish: true,
|
|
261
|
-
index:
|
|
264
|
+
index: index,
|
|
265
|
+
clickIndex: index,
|
|
262
266
|
});
|
|
267
|
+
} else {
|
|
268
|
+
if (_needFetch) {
|
|
269
|
+
// 只有needFetch 才设置searchOption
|
|
270
|
+
this.setData({
|
|
271
|
+
status: searchStatus,
|
|
272
|
+
showOption: searchOption,
|
|
273
|
+
isFinish: true,
|
|
274
|
+
index: -1,
|
|
275
|
+
});
|
|
276
|
+
} else if (!staticSearchable) {
|
|
277
|
+
this.setData({
|
|
278
|
+
status: searchStatus,
|
|
279
|
+
showOption: option,
|
|
280
|
+
isFinish: true,
|
|
281
|
+
index: -1,
|
|
282
|
+
});
|
|
283
|
+
}
|
|
263
284
|
}
|
|
264
|
-
}
|
|
265
|
-
},
|
|
285
|
+
},
|
|
266
286
|
},
|
|
267
287
|
});
|
|
@@ -36,6 +36,10 @@ Component({
|
|
|
36
36
|
type: Boolean,
|
|
37
37
|
value: true,
|
|
38
38
|
},
|
|
39
|
+
staticSearchable: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
value: true,
|
|
42
|
+
},
|
|
39
43
|
},
|
|
40
44
|
data: {
|
|
41
45
|
height: '390px',
|
|
@@ -170,14 +174,18 @@ Component({
|
|
|
170
174
|
},
|
|
171
175
|
},
|
|
172
176
|
observers: {
|
|
173
|
-
'option,searchValue': function (
|
|
177
|
+
'option,searchValue,staticSearchable': function (
|
|
178
|
+
option,
|
|
179
|
+
searchValue,
|
|
180
|
+
staticSearchable
|
|
181
|
+
) {
|
|
174
182
|
const { ignoreCase } = this.properties;
|
|
175
183
|
if (searchValue === '') {
|
|
176
184
|
this.setData({
|
|
177
185
|
showOption: option,
|
|
178
186
|
status: option.length > 0 ? 0 : 3,
|
|
179
187
|
});
|
|
180
|
-
} else {
|
|
188
|
+
} else if (staticSearchable) {
|
|
181
189
|
const searchRange = option.filter((item) => {
|
|
182
190
|
if (ignoreCase) {
|
|
183
191
|
return (
|
|
@@ -192,6 +200,10 @@ Component({
|
|
|
192
200
|
showOption: searchRange,
|
|
193
201
|
status: searchRange.length > 0 ? 0 : 3,
|
|
194
202
|
});
|
|
203
|
+
} else {
|
|
204
|
+
this.setData({
|
|
205
|
+
showOption: option,
|
|
206
|
+
});
|
|
195
207
|
}
|
|
196
208
|
},
|
|
197
209
|
option: function (option) {
|
|
@@ -12,7 +12,21 @@
|
|
|
12
12
|
</block>
|
|
13
13
|
</view>
|
|
14
14
|
<block wx:if="{{allPickerShow}}">
|
|
15
|
-
<dropdownSelect
|
|
15
|
+
<dropdownSelect
|
|
16
|
+
class="weui-picker__group weui-input"
|
|
17
|
+
bindchange="onChange"
|
|
18
|
+
bind:_childFetchData="_childFetchData"
|
|
19
|
+
bind:onSelectPicker="onSelectPicker"
|
|
20
|
+
bind:onClosePicker="onClosePicker"
|
|
21
|
+
option="{{option}}"
|
|
22
|
+
loadStatus="{{loadStatus}}"
|
|
23
|
+
searchStatus="{{searchStatus}}"
|
|
24
|
+
displayLabel="{{displayLabel}}"
|
|
25
|
+
selectedValue="{{value}}"
|
|
26
|
+
ignoreCase="{{ignoreCase}}"
|
|
27
|
+
staticSearchable="{{staticSearchable}}"
|
|
28
|
+
bind:search="onSearch"
|
|
29
|
+
/>
|
|
16
30
|
</block>
|
|
17
31
|
</view>
|
|
18
32
|
</view>
|
|
@@ -257,17 +257,12 @@ Component({
|
|
|
257
257
|
});
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
|
-
failEvent(
|
|
261
|
-
|
|
262
|
-
'
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
total: length,
|
|
267
|
-
index: invalidIndex,
|
|
268
|
-
},
|
|
269
|
-
{}
|
|
270
|
-
);
|
|
260
|
+
failEvent() {
|
|
261
|
+
wx.showToast({
|
|
262
|
+
icon: 'none',
|
|
263
|
+
duration: 2000,
|
|
264
|
+
title: `请上传不超过 ${this.data.maxSize / (1024 * 1024)}M 的图片`,
|
|
265
|
+
});
|
|
271
266
|
},
|
|
272
267
|
deletePic(e) {
|
|
273
268
|
const index = e.detail.index;
|
|
@@ -7,14 +7,9 @@
|
|
|
7
7
|
.wd-form-obj-root {
|
|
8
8
|
display: flex;
|
|
9
9
|
}
|
|
10
|
-
.wd-form-obj-root .wd-form-obj-root {
|
|
11
|
-
margin-top: 10px;
|
|
12
|
-
}
|
|
13
|
-
.wd-form-obj-root.wd-form-item--weui.wd-form-item {
|
|
14
|
-
padding: 0;
|
|
15
|
-
}
|
|
16
10
|
.wd-form-obj-root .wd-form-obj {
|
|
17
11
|
min-width: 200px;
|
|
12
|
+
width: fit-content;
|
|
18
13
|
width: 100%;
|
|
19
14
|
}
|
|
20
15
|
.wd-form-obj-root.size-width-sm {
|
|
@@ -43,9 +38,49 @@
|
|
|
43
38
|
.wd-form-obj-root .wd-form-item-wrap__label.wd-form-obj__label {
|
|
44
39
|
height: unset;
|
|
45
40
|
line-height: unset;
|
|
46
|
-
padding: unset;
|
|
47
|
-
margin-left: var(--wd-form-item-label-mr);
|
|
48
41
|
}
|
|
49
42
|
.wd-form-obj-root .wd-form-item-wrap .is-nowrap.wd-form-item-wrap__label.wd-form-obj__label > label {
|
|
50
43
|
line-height: unset;
|
|
44
|
+
}
|
|
45
|
+
.wd-form-obj-root.wd-h5-form-obj-root {
|
|
46
|
+
margin-top: calc(var(--wd-space-base) * 4);
|
|
47
|
+
}
|
|
48
|
+
.wd-form-obj-root.wd-h5-form-obj-root .wd-form-item--weui.wd-form-item {
|
|
49
|
+
padding: 0;
|
|
50
|
+
margin: 0;
|
|
51
|
+
}
|
|
52
|
+
.wd-form-obj-root.wd-h5-form-obj-root .wd-form-obj .wd-h5-card-root {
|
|
53
|
+
margin-bottom: var(--wd-form-item-pd);
|
|
54
|
+
}
|
|
55
|
+
.wd-form-obj-root.wd-h5-form-obj-root .wd-h5-form-obj > div > .wd-form-item > .wd-form-item-wrap {
|
|
56
|
+
border: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.wd-form.wd-form--weui .wd-h5-form-obj-root > .wd-form-item-wrap {
|
|
60
|
+
border: none;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.wd-form--vertical-left .wd-card__header .wd-form-item-wrap__label.wd-form-obj__label {
|
|
64
|
+
padding: 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.wd-form.wd-mp-form .wd-mp-form-obj-root > .wd-form-item-wrap {
|
|
68
|
+
border: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.wd-mp-form-obj-root {
|
|
72
|
+
margin-top: calc(var(--wd-space-base) * 4);
|
|
73
|
+
}
|
|
74
|
+
.wd-mp-form-obj-root .wd-form-item--weui.wd-form-item {
|
|
75
|
+
padding: 0;
|
|
76
|
+
margin: 0;
|
|
77
|
+
}
|
|
78
|
+
.wd-mp-form-obj-root .wd-form-obj .wd-h5-card-root {
|
|
79
|
+
margin-bottom: var(--wd-form-item-pd);
|
|
80
|
+
}
|
|
81
|
+
.wd-mp-form-obj-root .wd-mp-card-root {
|
|
82
|
+
margin-bottom: var(--wd-form-item-pd);
|
|
83
|
+
}
|
|
84
|
+
.wd-mp-form-obj-root .wd-mp-form-obj > view > .wd-form-item > .wd-form-item-wrap {
|
|
85
|
+
border: none;
|
|
51
86
|
}
|
|
@@ -7,14 +7,9 @@
|
|
|
7
7
|
.wd-form-obj-root {
|
|
8
8
|
display: flex;
|
|
9
9
|
}
|
|
10
|
-
.wd-form-obj-root .wd-form-obj-root {
|
|
11
|
-
margin-top: 10px;
|
|
12
|
-
}
|
|
13
|
-
.wd-form-obj-root.wd-form-item--weui.wd-form-item {
|
|
14
|
-
padding: 0;
|
|
15
|
-
}
|
|
16
10
|
.wd-form-obj-root .wd-form-obj {
|
|
17
11
|
min-width: 200px;
|
|
12
|
+
width: fit-content;
|
|
18
13
|
width: 100%;
|
|
19
14
|
}
|
|
20
15
|
.wd-form-obj-root.size-width-sm {
|
|
@@ -43,9 +38,49 @@
|
|
|
43
38
|
.wd-form-obj-root .wd-form-item-wrap__label.wd-form-obj__label {
|
|
44
39
|
height: unset;
|
|
45
40
|
line-height: unset;
|
|
46
|
-
padding: unset;
|
|
47
|
-
margin-left: var(--wd-form-item-label-mr);
|
|
48
41
|
}
|
|
49
42
|
.wd-form-obj-root .wd-form-item-wrap .is-nowrap.wd-form-item-wrap__label.wd-form-obj__label > label {
|
|
50
43
|
line-height: unset;
|
|
44
|
+
}
|
|
45
|
+
.wd-form-obj-root.wd-h5-form-obj-root {
|
|
46
|
+
margin-top: calc(var(--wd-space-base) * 4);
|
|
47
|
+
}
|
|
48
|
+
.wd-form-obj-root.wd-h5-form-obj-root .wd-form-item--weui.wd-form-item {
|
|
49
|
+
padding: 0;
|
|
50
|
+
margin: 0;
|
|
51
|
+
}
|
|
52
|
+
.wd-form-obj-root.wd-h5-form-obj-root .wd-form-obj .wd-h5-card-root {
|
|
53
|
+
margin-bottom: var(--wd-form-item-pd);
|
|
54
|
+
}
|
|
55
|
+
.wd-form-obj-root.wd-h5-form-obj-root .wd-h5-form-obj > div > .wd-form-item > .wd-form-item-wrap {
|
|
56
|
+
border: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.wd-form.wd-form--weui .wd-h5-form-obj-root > .wd-form-item-wrap {
|
|
60
|
+
border: none;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.wd-form--vertical-left .wd-card__header .wd-form-item-wrap__label.wd-form-obj__label {
|
|
64
|
+
padding: 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.wd-form.wd-mp-form .wd-mp-form-obj-root > .wd-form-item-wrap {
|
|
68
|
+
border: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.wd-mp-form-obj-root {
|
|
72
|
+
margin-top: calc(var(--wd-space-base) * 4);
|
|
73
|
+
}
|
|
74
|
+
.wd-mp-form-obj-root .wd-form-item--weui.wd-form-item {
|
|
75
|
+
padding: 0;
|
|
76
|
+
margin: 0;
|
|
77
|
+
}
|
|
78
|
+
.wd-mp-form-obj-root .wd-form-obj .wd-h5-card-root {
|
|
79
|
+
margin-bottom: var(--wd-form-item-pd);
|
|
80
|
+
}
|
|
81
|
+
.wd-mp-form-obj-root .wd-mp-card-root {
|
|
82
|
+
margin-bottom: var(--wd-form-item-pd);
|
|
83
|
+
}
|
|
84
|
+
.wd-mp-form-obj-root .wd-mp-form-obj > view > .wd-form-item > .wd-form-item-wrap {
|
|
85
|
+
border: none;
|
|
51
86
|
}
|
|
@@ -544,12 +544,16 @@ Component({
|
|
|
544
544
|
|
|
545
545
|
const readValue = `${toShow}${getPercentUnit(format)}`;
|
|
546
546
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
547
|
+
// 避免和focus逻辑冲突,延后一个任务执行赋值
|
|
548
|
+
// eslint-disable-next-line rulesdir/no-timer
|
|
549
|
+
setTimeout(() => {
|
|
550
|
+
this.setData({
|
|
551
|
+
readValue,
|
|
552
|
+
realValue: toReal,
|
|
553
|
+
showValue: toShow,
|
|
554
|
+
isInit: false,
|
|
555
|
+
});
|
|
556
|
+
}, 0);
|
|
553
557
|
},
|
|
554
558
|
inputValue: function (inputValue) {
|
|
555
559
|
if (equal(inputValue, this.data._oldInputValue)) return;
|
|
@@ -280,6 +280,11 @@
|
|
|
280
280
|
.wd-menulayout-body__left-menu .wedatea2td-menu__item {
|
|
281
281
|
padding: 7px 24px 7px 8px;
|
|
282
282
|
}
|
|
283
|
+
.wd-menulayout-body__left-menu .wedatea2td-menu__item .wedatea2td-menu__text {
|
|
284
|
+
max-width: unset;
|
|
285
|
+
width: 100%;
|
|
286
|
+
padding: 0;
|
|
287
|
+
}
|
|
283
288
|
.wd-menulayout-body__left-menu .wedatea2td-menu--light .wedatea2td-menu__fold:hover .wedatea2td-menu__fold-icon,
|
|
284
289
|
.wd-menulayout-body__left-menu .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded:hover,
|
|
285
290
|
.wd-menulayout-body__left-menu .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded > .wedatea2td-menu__item {
|
|
@@ -522,6 +527,11 @@
|
|
|
522
527
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu__item {
|
|
523
528
|
padding: 16px 48px 16px 16px;
|
|
524
529
|
}
|
|
530
|
+
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu__item .wedatea2td-menu__text {
|
|
531
|
+
max-width: unset;
|
|
532
|
+
width: 100%;
|
|
533
|
+
padding: 0;
|
|
534
|
+
}
|
|
525
535
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu--light .wedatea2td-menu__fold:hover .wedatea2td-menu__fold-icon,
|
|
526
536
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded:hover,
|
|
527
537
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded > .wedatea2td-menu__item {
|
|
@@ -280,6 +280,11 @@
|
|
|
280
280
|
.wd-menulayout-body__left-menu .wedatea2td-menu__item {
|
|
281
281
|
padding: 7px 24px 7px 8px;
|
|
282
282
|
}
|
|
283
|
+
.wd-menulayout-body__left-menu .wedatea2td-menu__item .wedatea2td-menu__text {
|
|
284
|
+
max-width: unset;
|
|
285
|
+
width: 100%;
|
|
286
|
+
padding: 0;
|
|
287
|
+
}
|
|
283
288
|
.wd-menulayout-body__left-menu .wedatea2td-menu--light .wedatea2td-menu__fold:hover .wedatea2td-menu__fold-icon,
|
|
284
289
|
.wd-menulayout-body__left-menu .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded:hover,
|
|
285
290
|
.wd-menulayout-body__left-menu .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded > .wedatea2td-menu__item {
|
|
@@ -522,6 +527,11 @@
|
|
|
522
527
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu__item {
|
|
523
528
|
padding: 16px 48px 16px 16px;
|
|
524
529
|
}
|
|
530
|
+
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu__item .wedatea2td-menu__text {
|
|
531
|
+
max-width: unset;
|
|
532
|
+
width: 100%;
|
|
533
|
+
padding: 0;
|
|
534
|
+
}
|
|
525
535
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu--light .wedatea2td-menu__fold:hover .wedatea2td-menu__fold-icon,
|
|
526
536
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded:hover,
|
|
527
537
|
.wd-menulayout-h5__drawer .wedatea2td-drawer__body .wedatea2td-menu--light .wedatea2td-menu__list li.wedatea2td-menu__submenu.is-expanded > .wedatea2td-menu__item {
|
|
@@ -174,12 +174,13 @@
|
|
|
174
174
|
}
|
|
175
175
|
.wd-modal-bd__ft-text-btn .wd-mp-btn.wd-btn--primary {
|
|
176
176
|
color: var(--wd-color-brand, #0052d9);
|
|
177
|
+
background-color: transparent;
|
|
177
178
|
}
|
|
178
|
-
.wd-modal-bd__ft-text-btn .wd-mp-btn.wd-btn--primary:hover {
|
|
179
|
+
.wd-modal-bd__ft-text-btn .wd-mp-btn.wd-btn--primary:hover:not(.is-disabled) {
|
|
179
180
|
background-color: transparent;
|
|
180
181
|
border-color: var(--wd-color-border-default);
|
|
181
182
|
}
|
|
182
|
-
.wd-modal-bd__ft-text-btn .wd-mp-btn:hover {
|
|
183
|
+
.wd-modal-bd__ft-text-btn .wd-mp-btn:hover:not(.is-disabled) {
|
|
183
184
|
background-color: transparent;
|
|
184
185
|
border-color: var(--wd-color-border-default);
|
|
185
186
|
}
|