fix(admin-dashboard): prevent row-warn links wrapping in recent orders

This commit is contained in:
萝卜
2026-03-16 21:38:52 +08:00
parent 09a6ee55ad
commit 363e60f76b

View File

@@ -720,6 +720,20 @@
background:var(--adm-error-bg, #fef2f2); background:var(--adm-error-bg, #fef2f2);
border-radius:4px; border-radius:4px;
cursor:help; cursor:help;
/* 最近平台订单:提示块内通常是“标签 + 多个短链接”,应尽量保持同一行,避免“进入集合”被挤到换行导致观感不稳 */
white-space:nowrap;
overflow-x:auto;
-webkit-overflow-scrolling:touch;
}
[data-page="admin.dashboard"] .row-warn::-webkit-scrollbar{
height:6px;
}
[data-page="admin.dashboard"] .row-warn::-webkit-scrollbar-thumb{
background:rgba(239, 68, 68, .25);
border-radius:6px;
} }
.platform-orders-table .row-warn a.link, .platform-orders-table .row-warn a.link,