fixed default network

This commit is contained in:
2026-06-29 15:06:48 +03:00
parent 980608a279
commit e9e2cbbfec
18 changed files with 1227 additions and 138 deletions
+30 -1
View File
@@ -352,6 +352,7 @@ button.icon-only { padding: 6px 9px; line-height: 1; }
.req-log .log-path { max-width: 280px; overflow: hidden; text-overflow: ellipsis; }
.req-log .log-err { color: #f87171; }
.req-log .log-ok { color: #4ade80; }
.req-log .log-wait { color: #fcd34d; }
.req-log .empty-cell { color: var(--muted); text-align: center; }
/* ---------- Dialog ---------- */
@@ -361,13 +362,41 @@ dialog {
border-radius: var(--radius);
color: var(--text);
padding: 22px;
min-width: 360px;
min-width: min(96vw, 760px);
}
dialog::backdrop { background: rgba(0,0,0,0.6); }
dialog form { display: flex; flex-direction: column; gap: 10px; }
dialog h3 { margin: 0 0 6px; }
dialog menu { display: flex; justify-content: flex-end; gap: 8px; padding: 0; margin: 14px 0 0; }
.response-check-block { margin-top: 6px; }
.response-check-advanced { display: none; margin-top: 10px; gap: 10px; flex-direction: column; }
.response-check-advanced.show { display: flex; }
.response-rules-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 4px;
}
.response-rule-row {
display: grid;
grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr 1.2fr auto;
gap: 6px;
margin-bottom: 6px;
}
.response-rule-row input,
.response-rule-row select {
width: 100%;
min-width: 0;
}
.response-check-poll { margin-top: 4px; }
@media (max-width: 720px) {
.response-rule-row {
grid-template-columns: 1fr 1fr;
}
.response-rule-row .rc-del { grid-column: 2; }
}
/* ---------- Toast ---------- */
.toast {
position: fixed; bottom: 24px; right: 24px;