Fix service status refresh, DNS zones, Docker page, SSL manager, input styling, updates

- Service status: data-svc-status/data-svc-dot attrs + refreshSvcStatus() updates in-place after restart/stop/start
- svc-check endpoint: lightweight is-active poll for single service
- Docker page: fix function signature (was docker(el), now returns HTML)
- DNS zones: fix records response (array not object), fix add-record content field, fix delete-zone accept zone_id
- DNS create-zone: allow admin to create zones without account_id
- SSL manager: add Generate CSR modal (openssl req), Upload Custom SSL modal, explain both options
- nova.css: add input:not([type]), date/search/tel/time types, .form-control to styling selector; fix date picker icon
- Updates: fix panel-up check (was fsockopen on HTTPS port, now curl -sk); add set_time_limit(180/300)
- apply-os-update: set_time_limit(300)
- DB engine manager: fix duplicate INSERT line

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 11:56:14 +00:00
parent 5ef458dfb0
commit 99eb8ede67
5 changed files with 196 additions and 66 deletions
+6 -2
View File
@@ -71,15 +71,19 @@ body {
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; color: var(--text-muted); }
input[type="text"], input[type="password"], input[type="email"],
input[type="number"], input[type="url"], select, textarea {
input[type="number"], input[type="url"], input[type="search"],
input[type="date"], input[type="time"], input[type="tel"],
input:not([type]), .form-control, select, textarea {
width: 100%; padding: .65rem .9rem;
background: var(--bg3); border: 1px solid var(--border);
border-radius: var(--radius); color: var(--text);
font-family: var(--font); font-size: .9rem;
transition: border-color .15s;
outline: none;
box-sizing: border-box;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
input:focus, select:focus, textarea:focus, .form-control:focus { border-color: var(--primary); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.5); }
.input-with-icon { position: relative; }
.input-with-icon input { padding-right: 2.5rem; }