Commit 10855b8
Fix accordion layout to properly release space when channels collapse
Replace CSS grid with flexbox layout to allow collapsed channels to release horizontal space for other channels to expand into.
**Problems Fixed:**
- Collapsed channels now shrink to 40px width (was taking full grid column)
- Other channels expand to fill freed space horizontally
- Collapsed channels no longer extend beyond window boundaries
- Proper text overflow handling with ellipsis
**Layout Changes:**
- Changed from CSS Grid to Flexbox with flex-wrap
- Expanded channels: flex: 1 1 300px (grow, shrink, 300px basis)
- Collapsed channels: flex: 0 0 40px (fixed 40px width)
- Min-width enforced with !important to override flex defaults
- Proper overflow handling on all nested elements
**Behavior:**
- When channel collapses: releases space, other channels grow
- When channel expands: takes minimum 300px, others adjust
- Multiple collapsed channels stack vertically on the left
- Responsive wrapping when insufficient horizontal space
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 9a86055 commit 10855b8
File tree
1 file changed
+18
-6
lines changed- benchmesh-serial-service/frontend/src/ui/workbench/EditorArea
1 file changed
+18
-6
lines changedLines changed: 18 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
174 | | - | |
175 | | - | |
| 174 | + | |
| 175 | + | |
176 | 176 | | |
| 177 | + | |
177 | 178 | | |
178 | 179 | | |
179 | 180 | | |
180 | 181 | | |
181 | 182 | | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
182 | 186 | | |
183 | 187 | | |
184 | 188 | | |
| |||
240 | 244 | | |
241 | 245 | | |
242 | 246 | | |
243 | | - | |
244 | | - | |
245 | | - | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
246 | 250 | | |
247 | 251 | | |
248 | 252 | | |
249 | 253 | | |
250 | 254 | | |
251 | 255 | | |
252 | | - | |
| 256 | + | |
253 | 257 | | |
254 | 258 | | |
255 | 259 | | |
256 | 260 | | |
257 | 261 | | |
| 262 | + | |
258 | 263 | | |
| 264 | + | |
259 | 265 | | |
260 | 266 | | |
261 | 267 | | |
262 | 268 | | |
263 | 269 | | |
264 | 270 | | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
265 | 274 | | |
266 | 275 | | |
267 | 276 | | |
268 | 277 | | |
| 278 | + | |
| 279 | + | |
269 | 280 | | |
270 | 281 | | |
271 | 282 | | |
| |||
274 | 285 | | |
275 | 286 | | |
276 | 287 | | |
| 288 | + | |
277 | 289 | | |
278 | 290 | | |
279 | 291 | | |
| |||
0 commit comments