You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TableExpand.less 316 B

123456789101112131415
  1. /** [表格主题样式一] 表格强制列不换行 */
  2. .j-table-force-nowrap {
  3. td, th {
  4. white-space: nowrap;
  5. }
  6. .ant-table-selection-column {
  7. padding: 12px 22px !important;
  8. }
  9. /** 列自适应,弊端会导致列宽失效 */
  10. &.ant-table-wrapper .ant-table-content {
  11. overflow-x: auto;
  12. }
  13. }