preferences polishing
frdel committed
Jan 29, 2026 at 21:48 UTC
52404a776a0e2635af4e90a221d6a65386782549
2 files changed
+4
-4
webui/components/sidebar/bottom/preferences/preferences-panel.html
+2
-2
@@ -142,7 +142,7 @@
142
font-size: 0.7rem;
143
font-weight: 500;
144
letter-spacing: 0.02em;
145
- padding: 0.15rem 0.25rem;
145
+ padding: 0.15rem 0.1rem;
146
cursor: pointer;
147
opacity: 0.7;
148
transition: opacity 0.15s ease, color 0.15s ease;
@@ -184,7 +184,7 @@
184
font-size: 0.7rem;
185
font-weight: 500;
186
letter-spacing: 0.02em;
187
- padding: 0.15rem 0.25rem;
187
+ padding: 0.15rem 0.1rem;
188
cursor: pointer;
189
opacity: 0.7;
190
transition: opacity 0.15s ease;
webui/components/sidebar/bottom/preferences/preferences-store.js
+2
-2
@@ -57,7 +57,7 @@ const model = {
57
{ label: "MIN", value: "40" },
58
{ label: "WIDE", value: "55" },
59
{ label: "2X", value: "80" },
60
- { label: "<>", value: "full" },
60
+ { label: "FULL", value: "full" },
61
],
62
63
// Detail mode for process groups/steps expansion
@@ -72,7 +72,7 @@ const model = {
72
73
// Detail mode options for UI sidebar
74
detailModeOptions: [
75
- { label: "NONE", value: "collapsed", title: "All collapsed" },
75
+ { label: "NO", value: "collapsed", title: "All collapsed" },
76
{ label: "LIST", value: "list", title: "Steps collapsed" },
77
{ label: "STEP", value: "current", title: "Current step only" },
78
{ label: "ALL", value: "expanded", title: "All expanded" },