Mechanic's work place
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
VPN SaaS Dev
2026-05-16 10:04:56 +09:00
parent fec9635079
commit 83ad880b9d
39 changed files with 2951 additions and 74 deletions

View File

@@ -1171,6 +1171,31 @@ button.is-busy {
color: #0e604f;
}
.service-profile-card {
display: grid;
gap: 10px;
margin: 4px 0 12px;
padding: 12px;
border: 1px solid rgba(18, 115, 95, 0.24);
border-radius: 8px;
background:
linear-gradient(135deg, rgba(18, 115, 95, 0.1), rgba(47, 111, 159, 0.08)),
#fff;
}
.service-profile-card strong {
display: block;
margin-top: 2px;
}
.service-profile-card small {
color: var(--muted);
}
.service-profile-card.hidden {
display: none;
}
.drawer-cars {
max-height: 320px;
overflow: auto;
@@ -1466,6 +1491,48 @@ select {
color: var(--muted);
}
.list-heading {
margin: 12px 0 2px;
color: var(--text);
font-size: 14px;
}
.work-order-card {
background: #fff;
}
.work-order-head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 10px;
}
.work-order-totals {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
margin: 6px 0;
color: var(--muted);
font-size: 12px;
}
.inline-work-form {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(74px, 0.6fr) minmax(86px, 0.8fr) auto;
gap: 8px;
align-items: end;
}
.inline-work-form input {
min-height: 36px;
}
.inline-work-form button {
min-height: 36px;
padding: 0 10px;
}
.row-actions {
display: flex;
flex-wrap: wrap;
@@ -1650,6 +1717,16 @@ select {
overflow-wrap: anywhere;
}
.work-order-head,
.work-order-totals,
.inline-work-form {
grid-template-columns: 1fr;
}
.work-order-head {
display: grid;
}
.auth-overlay {
align-items: stretch;
padding: 14px;