Browse Source

fix: Table column title styles (#30799)

* fix: Table column.title onClick

close #30787

* fix: Table ellipsis when has filters or sorters

close #27959
pull/30803/head
afc163 4 years ago
committed by GitHub
parent
commit
01d126b8d6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      components/table/style/index.less

8
components/table/style/index.less

@ -60,6 +60,12 @@
text-overflow: ellipsis; text-overflow: ellipsis;
} }
} }
.@{table-prefix-cls}-column-title {
overflow: hidden;
text-overflow: ellipsis;
word-break: keep-all;
}
} }
// ============================ Title ============================= // ============================ Title =============================
@ -232,6 +238,8 @@
} }
&-column-title { &-column-title {
position: relative;
z-index: 1;
flex: 1; flex: 1;
} }

Loading…
Cancel
Save