style(admin-platform-order): soften blocked hint when button disabled

This commit is contained in:
萝卜
2026-03-16 13:30:52 +08:00
parent a9d2d5e749
commit abd08adc15

View File

@@ -582,6 +582,15 @@
color:var(--adm-error, #ef4444);
}
/* 工具区:按钮被禁用时的“软提示”视觉(更像 Ant Design Pro 的 disabled + hint 组合) */
.tool-group button[disabled]{
opacity:.55;
cursor:not-allowed;
}
.tool-group button[disabled] + .adm-tool-blocked-hint{
color:var(--adm-text-muted, #94a3b8);
}
/* 防止 focus-boxborder + 内部 form 宽度造成列间“压线/重叠” */
.tool-grid > *{
min-width:0;