style(swaptrade2): 互换交易列表网格行高样式

- 设置 jqgrid 行高度为 25px
- 设置单元格高度为 25px 并调整行高至 20px
- 添加文本溢出省略号显示效果
- 统一设置白空间为 nowrap 避免文本换行
This commit is contained in:
张名锐
2026-07-16 14:15:45 +08:00
parent 6d591fe9af
commit 98122ef509
+13 -1
View File
@@ -21,6 +21,18 @@
.ChildrenBG {
background-color: #ADADAD !important;
}
#listGrid tr.jqgrow {
height: 25px !important;
}
#listGrid tr.jqgrow > td {
height: 25px !important;
line-height: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>
}
@section JS{
@@ -116,4 +128,4 @@
<p><input class="btn btn-primary " type="button" onclick="previewTradeAbstract();return false;" value="交易简讯"></p>
<p><input class="btn btn-primary " type="button" onclick="exportTrade();return false;" value="导出当前字段"><span class="text-muted small">上限10000条</span></p>
</div>
</script>
</script>