v0.14.2-hotfix

This commit is contained in:
Mateusz Gruszczyński
2026-09-15 10:14:01 +02:00
parent c3f6e773f8
commit 7ffaba6c7a
12 changed files with 103 additions and 35 deletions
+30
View File
@@ -2040,6 +2040,11 @@ legend {
background: var(--legend-color, var(--accent));
}
.legend-line.is-dashed {
background: repeating-linear-gradient(90deg, var(--legend-color, var(--accent)) 0 7px, transparent 7px 12px);
}
@media (max-width: 620px) {
.history-summary {
grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -2799,6 +2804,26 @@ legend {
width: 100%;
}
.history-network-controls {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 10px;
align-items: end;
}
.history-network-controls label { min-width: 0; }
.history-jitter-toggle {
min-height: 45px;
white-space: nowrap;
}
.history-jitter-toggle.active {
color: var(--accent-text);
border-color: var(--accent);
background: var(--accent);
}
.history-range-control {
display: grid;
gap: 7px;
@@ -9613,3 +9638,8 @@ body.flow-editor-open {
.history-energy-options { width: min(420px, calc(100vw - 40px)); max-height: 46vh; }
}
@media (max-width: 640px) {
.history-network-controls { grid-template-columns: 1fr; }
.history-jitter-toggle { width: 100%; }
}