feat(openwrt): build router detection and provisioning readiness flow

This commit is contained in:
litoral05
2026-05-06 15:15:45 +01:00
parent 523ce02b03
commit 3d7c7685aa
8 changed files with 881 additions and 10 deletions
+46
View File
@@ -1376,4 +1376,50 @@ td .small-action {
.settings-actions button:hover {
background: white;
transform: translateY(-1px);
}
.openwrt-form {
display: grid;
grid-template-columns: 1fr 1fr 1fr auto;
align-items: end;
gap: 14px;
}
.openwrt-form label {
display: grid;
gap: 8px;
color: #374151;
font-size: 13px;
font-weight: 800;
}
.openwrt-form input {
height: 44px;
border: 1px solid #edf1f7;
border-radius: 14px;
padding: 0 14px;
background: #f8fafc;
color: #111827;
font-weight: 700;
}
.openwrt-form input:focus {
outline: 0;
background: white;
border-color: #5da8ff;
box-shadow: 0 0 0 4px rgba(93, 168, 255, 0.1);
}
.openwrt-grid {
display: grid;
gap: 24px;
}
.openwrt-grid .dashboard-card {
padding: 26px;
border-radius: 24px;
}
.openwrt-grid .card-header {
margin-bottom: 22px;
}