Feature: справочник Статусы заказов, поле Статус в заказе клиента, оформление в списке (зелёный/песочный)

Made-with: Cursor
This commit is contained in:
2026-02-26 16:44:39 +00:00
parent 9d1bfadb96
commit 29cf44e278
15 changed files with 151 additions and 4 deletions

View File

@@ -260,6 +260,23 @@ body {
color: var(--ws-danger-dark);
}
/* Бейдж статуса заказа в списке */
.ws-status-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 6px;
font-size: 0.875em;
font-weight: 500;
}
.ws-status-done {
background: rgba(76, 175, 80, 0.35);
color: #a5d6a7;
}
.ws-status-inprogress {
background: rgba(255, 193, 7, 0.35);
color: #ffe082;
}
.ws-table .ws-num {
text-align: right;
font-variant-numeric: tabular-nums;