FN-7072: reduce skill metadata typography

Make the Skills detail pane render metadata and markdown content more compactly.

- Add scoped font-size reductions for plain-text and markdown skill detail content.
- Preserve shared mailbox markdown typography by limiting the new sizing to SkillsView selectors.
- Add a patch changeset for the published Fusion CLI package.

Files changed:
 .changeset/fn-7072-skill-metadata-font-size.md   | 7 +++++++
 packages/dashboard/app/components/SkillsView.css | 8 +++++++-
 2 files changed, 14 insertions(+), 1 deletion(-)

Fusion-Task-Id: FN-7072

Fusion-Task-Lineage: 6270be52-d52c-4969-ae65-ec4f10167ff2
This commit is contained in:
gsxdsm
2026-06-26 13:51:32 -07:00
parent a61127de3b
commit 3c09008748
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
---
"@runfusion/fusion": patch
---
summary: Make skill detail metadata render more compactly in the right Skills panel.
category: fix
dev: Scoped reduced font-size to `.skills-view-detail-markdown` / `.skills-view-detail-content` in SkillsView.css; shared `.mailbox-markdown` typography unchanged.

View File

@@ -449,8 +449,10 @@ Detail-pane header bar: BACK (narrow only) on the left, truncating skill name in
flex-shrink: 0;
}
/* FNXC:Skills 2026-06-26-13:38: FN-7072 reduces skill detail/metadata font size in the right panel; scope the compact text to SkillsView plain-text content so shared mailbox markdown typography is unaffected. */
.skills-view-detail-content {
font-family: var(--font-mono);
font-size: 0.9em;
line-height: 1.5;
overflow-x: auto;
white-space: pre-wrap;
@@ -542,9 +544,13 @@ File viewer column inside the detail body. Header bar carries the "← Back to S
white-space: nowrap;
}
/* FNXC:Skills 2026-06-23-04:15: markdown render wrapper (SKILL.md + markdown files) reuses the shared .mailbox-markdown styling from MailboxMessageContent; this just bounds its width inside the pane. */
/*
FNXC:Skills 2026-06-23-04:15: markdown render wrapper (SKILL.md + markdown files) reuses the shared .mailbox-markdown styling from MailboxMessageContent; this just bounds its width inside the pane.
FNXC:Skills 2026-06-26-13:38: FN-7072 reduces skill detail/metadata font size in the right panel; scope the compact text to SkillsView markdown content so shared mailbox markdown typography is unaffected.
*/
.skills-view-detail-markdown {
min-width: 0;
font-size: 0.9em;
word-break: break-word;
}