preferences labels update

frdel committed Jan 21, 2026 at 10:40 UTC be8036d13769dce14fa63e947d6f7e6d5161d8bd
2 files changed +12 -9
webui/components/sidebar/bottom/preferences/preferences-panel.html
+5 -3
@@ -51,9 +51,8 @@
51 class="detail-btn"
52 :class="{ 'active': $store.preferences.detailMode === opt.value }"
53 @click="$store.preferences.detailMode = opt.value"
54 - :title="opt.title">
55 - <span class="material-symbols-outlined" x-text="opt.icon"></span>
56 - </button>
54 + :title="opt.title"
55 + x-text="opt.label"></button>
56 <span class="detail-sep" x-show="idx < $store.preferences.detailModeOptions.length - 1">·</span>
57 </span>
58 </template>
@@ -182,6 +181,9 @@
181 background: none;
182 border: none;
183 color: var(--color-primary);
184 + font-size: 0.7rem;
185 + font-weight: 500;
186 + letter-spacing: 0.02em;
187 padding: 0.15rem 0.25rem;
188 cursor: pointer;
189 opacity: 0.7;
webui/components/sidebar/bottom/preferences/preferences-store.js
+7 -6
@@ -64,9 +64,10 @@ const model = {
64
65 // Width presets: { label, value in em }
66 chatWidthOptions: [
67 - { label: "STD", value: "55" },
68 - { label: "X-WIDE", value: "90" },
69 - { label: "FULL", value: "full" },
67 + { label: "MIN", value: "40" },
68 + { label: "WIDE", value: "55" },
69 + { label: "2X", value: "80" },
70 + { label: "<>", value: "full" },
71 ],
72
73 // Detail mode for process groups/steps expansion
@@ -81,9 +82,9 @@ const model = {
82
83 // Detail mode options for UI sidebar
84 detailModeOptions: [
84 - { label: "MIN", value: "collapsed", icon: "unfold_less", title: "All collapsed" },
85 - { label: "CUR", value: "current", icon: "step", title: "Current step only" },
86 - { label: "ALL", value: "expanded", icon: "unfold_more", title: "All expanded" },
85 + { label: "NONE", value: "collapsed", title: "All collapsed" },
86 + { label: "STEP", value: "current", title: "Current step only" },
87 + { label: "ALL", value: "expanded", title: "All expanded" },
88 ],
89
90 // Initialize preferences and apply current state