fix a bunch of issues

This commit is contained in:
Alexander Daichendt 2026-06-06 18:22:16 +02:00
parent 91f88dc9ef
commit 2c3df28c48
66 changed files with 1546 additions and 542 deletions

View file

@ -10,6 +10,10 @@
margin-bottom: 16px;
}
.macro-toolbar .app-select-field {
min-width: min(260px, 100%);
}
.field.inline.compact {
grid-template-columns: 72px 140px;
}
@ -27,26 +31,26 @@
overflow: hidden;
border-radius: 6px;
margin: 16px 0 10px;
background: #d8e0dc;
background: var(--color-border-subtle);
}
.flash-segment.used {
background: #a64545;
background: var(--color-danger);
}
.flash-segment.available {
background: #60d394;
background: var(--color-primary);
}
.flash-segment.recycled {
background: #d4b25f;
background: var(--color-warning);
}
.flash-summary {
display: flex;
justify-content: space-between;
gap: 12px;
color: #66736f;
color: var(--color-small-text);
font-size: 0.78rem;
font-weight: 700;
margin-bottom: 12px;
@ -56,10 +60,10 @@
min-height: 220px;
max-height: 320px;
overflow: auto;
border: 1px solid #d8e0dc;
border: 1px solid var(--color-border-subtle);
border-radius: 6px;
padding: 10px;
background: #f4f7f5;
background: var(--color-panel-subtle);
white-space: pre-wrap;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 0.82rem;
@ -90,10 +94,10 @@
.macro-help pre {
overflow: auto;
border: 1px solid #d8e0dc;
border: 1px solid var(--color-border-subtle);
border-radius: 6px;
padding: 10px;
background: #f4f7f5;
background: var(--color-panel-subtle);
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 0.82rem;
}
@ -106,8 +110,8 @@
height: 18px;
margin-left: 6px;
border-radius: 999px;
color: #1f5c4c;
background: #dfe7e2;
color: var(--color-metric);
background: var(--color-secondary-bg);
font-size: 0.75rem;
font-weight: 700;
cursor: help;
@ -115,7 +119,7 @@
.field-error {
margin: 0;
color: #a64545;
color: var(--color-danger);
font-size: 0.82rem;
font-weight: 600;
}