Feature: компактные формы заказов, колонки Товар/Количество

Made-with: Cursor
This commit is contained in:
2026-02-26 05:17:21 +00:00
parent 90ae4bdc1b
commit 8af8e0b1f4
7 changed files with 221 additions and 26 deletions

View File

@@ -0,0 +1,47 @@
/* Компактная раскладка форм документов */
.ws-form-compact .ws-form-row {
display: grid;
gap: 1rem;
margin-bottom: 1rem;
align-items: start;
}
.ws-form-compact .ws-form-row-date-number {
grid-template-columns: 10ch 15ch;
}
.ws-form-compact .ws-form-row-date-number .ws-form-group input {
max-width: 100%;
width: 100%;
}
.ws-form-compact .ws-form-row-2 {
grid-template-columns: 1fr 1fr;
max-width: 520px;
}
.ws-form-compact .ws-form-row-2 .ws-form-group input,
.ws-form-compact .ws-form-row-2 .ws-form-group select {
max-width: 100%;
}
/* Таблица товаров: колонка Товар шире, Количество уже */
.ws-table-items .ws-col-product {
width: 35%;
min-width: 14rem;
}
.ws-table-items .ws-col-qty {
width: 5rem;
}
.ws-table-items td.ws-col-qty input,
.ws-table-items .ws-col-qty input {
width: 4ch !important;
max-width: 5rem;
box-sizing: border-box;
}
.ws-table-items .ws-col-del {
width: 4rem;
}