fix(admin-web): 系统账户流水备注列显示完整内容
移除 .memo 的 max-width/overflow/ellipsis/nowrap 截断样式, 改为 word-break: break-word 自动换行,确保备注全文可见。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
19fca05a81
commit
05aacc0d5b
|
|
@ -507,12 +507,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.memo {
|
.memo {
|
||||||
max-width: 200px;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #6b7280;
|
color: #6b7280;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* [2026-01-06] 新增:详细明细列表样式 */
|
/* [2026-01-06] 新增:详细明细列表样式 */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue