[update] 修改表格中的链接不换行

This commit is contained in:
lideqin
2023-09-27 17:10:05 +08:00
parent ae04110304
commit 14a10350f1
2 changed files with 9 additions and 7 deletions
+9
View File
@@ -335,6 +335,15 @@
text-overflow: ellipsis;
}
/* 表格中换行链接的样式 */
.link-a {
display: inline-block;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.can-click-table-text {
color: @primary-color;
cursor: pointer;
@@ -180,11 +180,4 @@ export default {
<style scoped lang="less">
@import '~@assets/less/common.less';
.link-a {
display: inline-block;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>