admin: platform orders tools layout + table wrap to avoid vertical text

This commit is contained in:
萝卜
2026-03-14 10:53:22 +00:00
parent 9678121efa
commit 50d90442c1
3 changed files with 60 additions and 31 deletions

View File

@@ -53,6 +53,7 @@ a:hover{text-decoration:underline;}
.card-spaced{margin-bottom:20px;}
.grid{display:grid;gap:16px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;}

View File

@@ -52,3 +52,19 @@
font-size:12px;
line-height:1.5;
}
/* 平台订单列表:避免列太多导致内容挤压成“竖排/断字” */
.table-wrap{
width:100%;
overflow-x:auto;
}
.table-wrap table{
min-width:1600px;
}
.table-nowrap th,
.table-nowrap td{
white-space:nowrap;
word-break:normal;
}