feat: add Mieru management

This commit is contained in:
andrey271192
2026-06-08 00:56:27 +03:00
parent 771d9446b1
commit a53e5fc27f
7 changed files with 596 additions and 6 deletions

View File

@@ -54,7 +54,7 @@ body {
font: 14px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input, select { font: inherit; }
button, input, select, textarea { font: inherit; }
button {
min-height: 40px;
@@ -74,7 +74,7 @@ button.soft { background: color-mix(in srgb, var(--blue) 12%, transparent); colo
button.danger { background: color-mix(in srgb, var(--red) 14%, transparent); color: var(--red); }
button.attention { background: var(--amber); color: #111827; }
input, select {
input, select, textarea {
min-height: 42px;
min-width: 0;
border: 1px solid var(--line);
@@ -85,7 +85,13 @@ input, select {
outline: none;
}
input:focus, select:focus {
textarea {
padding-block: 10px;
resize: vertical;
overflow-wrap: anywhere;
}
input:focus, select:focus, textarea:focus {
border-color: var(--blue);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 16%, transparent);
}
@@ -1360,6 +1366,14 @@ td small {
justify-self: start;
}
.settings-form textarea {
width: 100%;
min-height: 132px;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
font-size: 12px;
line-height: 1.45;
}
.backup-item span,
.event small {
display: block;