vue2-client 1.20.13 → 1.20.14
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/package.json
CHANGED
|
@@ -675,21 +675,26 @@ defineExpose({
|
|
|
675
675
|
}
|
|
676
676
|
}
|
|
677
677
|
</style>
|
|
678
|
-
<!-- 非scoped
|
|
678
|
+
<!-- 非scoped样式:全局覆盖表格内下拉框宽度 -->
|
|
679
679
|
<style lang="less">
|
|
680
680
|
.h-form-table-wrapper {
|
|
681
|
-
.ant-table-tbody
|
|
681
|
+
.ant-table-tbody td {
|
|
682
682
|
--form-label-width: 0 !important;
|
|
683
683
|
|
|
684
|
+
.ant-select,
|
|
685
|
+
.ant-select-selection {
|
|
686
|
+
width: 100% !important;
|
|
687
|
+
}
|
|
684
688
|
.ant-form-item {
|
|
685
689
|
width: 100% !important;
|
|
686
|
-
max-width: 100% !important;
|
|
687
690
|
}
|
|
688
691
|
.ant-form-item-control-wrapper {
|
|
689
692
|
width: 100% !important;
|
|
690
|
-
max-width: 100% !important;
|
|
691
693
|
flex: none !important;
|
|
692
694
|
}
|
|
695
|
+
.ant-select-selection__rendered {
|
|
696
|
+
width: 100% !important;
|
|
697
|
+
}
|
|
693
698
|
}
|
|
694
699
|
}
|
|
695
|
-
</style>
|
|
700
|
+
</style>
|