mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 03:13:41 +08:00
fix(wiki): make processing-config tab scrollable so config cards are reachable (#429)
The config tab pane (.tab-content--config) was set to overflow:hidden, mirroring the graph pane, but its inner .wiki-config has no bounded height so its own overflow-y:auto never triggers. Tall config content (model strategy / processing rules / search-preview cards) overflowed off-screen with no scrollbar. Switch the pane to overflow-y:auto like the generic .tab-content. The existing <=980px media query (overflow:visible) keeps mobile page-scroll intact. Pure CSS, no logic change.
This commit is contained in:
parent
8522aa7591
commit
b426cffd48
@ -187,7 +187,7 @@ async function onOpenPage(slug: string) {
|
||||
.tab-btn:hover { color: var(--mc-text-primary); }
|
||||
.tab-btn.active { color: var(--mc-primary); background: var(--mc-bg-elevated); box-shadow: 0 1px 4px rgba(0,0,0,0.08); font-weight: 600; }
|
||||
.tab-content { flex: 1; min-height: 0; overflow-y: auto; padding-right: 2px; }
|
||||
.tab-content--config { overflow: hidden; padding-right: 0; }
|
||||
.tab-content--config { overflow-y: auto; padding-right: 0; }
|
||||
.tab-content--graph { overflow: hidden; padding: 0; }
|
||||
|
||||
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-height: 200px; color: var(--mc-text-tertiary); text-align: center; }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user