Align settings row descriptions with grid layout #309
Labels
No labels
abandoned
active
audit
blocked
data-safety
difficulty:easy
difficulty:hard
difficulty:high
difficulty:medium
docs
done
duplicate
notebook-v0
open
priority:high
ready
release-critical
safe-mode
spec
spec-backlog
subsystem:api
subsystem:backlog
subsystem:bases
subsystem:ci
subsystem:command
subsystem:configuration
subsystem:consolidate
subsystem:dependencies
subsystem:desktop-electron
subsystem:diffmerge
subsystem:docker
subsystem:docs
subsystem:fuzzy
subsystem:graph
subsystem:hotkeys
subsystem:lapis
subsystem:maint
subsystem:maintenance
subsystem:markdown
subsystem:markdown-lint
subsystem:md018
subsystem:notebook
subsystem:notifications
subsystem:opfs
subsystem:package
subsystem:plugin-markdown
subsystem:plugin-tasks
subsystem:plugins
subsystem:registry
subsystem:release
subsystem:renovate
subsystem:restore
subsystem:scripts
subsystem:search
subsystem:settings
subsystem:spec
subsystem:tasks
subsystem:testing
subsystem:ui
subsystem:web
subsystem:workspace
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lapis-notes/lapis#309
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Setting rows use equal flex growth on
.setting-item-infoand.setting-item-control, so description text wraps at different column boundaries per row when plugin or schema descriptions vary in length.Goal
Use a two-column grid so descriptions consume remaining space and controls align consistently, including on narrow settings panels.
Acceptance Criteria
.setting-itemrows usegrid-template-columns: minmax(0, 1fr) auto..workspace-shell__settings-schema-body.Implementation Notes
packages/workspace/src/lib/styles/app.cssbase.setting-itemgrid rules.packages/workspace/src/lib/styles/workspace-shell.css.Suggested Files or Specs To Inspect
Validation Commands
Related Issues
Follow-up Tasks
Implementation Summary
Replaced equal flex columns on .setting-item with a two-track grid (minmax(0,1fr) auto), added schema-body subgrid for aligned control columns, container-query stacking below 32rem, and :empty hiding for descriptions. Validated with workspace check:all and test:e2e:smoke.