fix 80495

This commit is contained in:
danshihao
2024-01-05 15:50:07 +08:00
parent 4b1be4c322
commit 9892ac70e3
+6
View File
@@ -1,10 +1,16 @@
/** [表格主题样式一] 表格强制列不换行 */
.j-table-force-nowrap {
td, th {
white-space: nowrap;
// fix:80450 表格内容超出宽度时,文字溢出显示省略号
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
}
// fix:80495 表格选择列不设置溢出
.ant-table-selection-column {
overflow: visible;
}
.ant-table-selection-column {