Line Sender

This commit is contained in:
chk
2026-06-15 09:22:41 +02:00
parent b7d742b9a4
commit 635b8bd1f3
14 changed files with 1050 additions and 217 deletions

View File

@@ -177,6 +177,40 @@ body {
gap: 8px;
margin-bottom: 12px;
}
/* Drei-Gruppen-Zeile (Aktives Programm) */
.controls-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
margin-bottom: 12px;
flex-wrap: wrap;
}
.ctrl-group {
display: flex;
gap: 6px;
align-items: center;
}
/* Toggle Navigieren / Senden */
.toggle-group {
display: flex;
border: 1px solid #334155;
border-radius: 6px;
overflow: hidden;
}
.toggle-group .toggle {
border: none;
border-radius: 0;
border-right: 1px solid #334155;
padding: 6px 12px;
}
.toggle-group .toggle:last-child { border-right: none; }
.toggle-group .toggle.active {
background: var(--active);
color: var(--accent);
}
button {
background: #1e293b;
color: var(--text);