Draft
Tighten dashboard UI: compact tool calls, collapsible search results, reduced panel padding#2
Conversation
… reduced padding Agent-Logs-Url: https://github.com/mojomast/hermesdashboard/sessions/a99036c1-9ff3-46cc-96a3-53c1858d9582 Co-authored-by: mojomast <76818041+mojomast@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix layout issues in dashboard UI components
Tighten dashboard UI: compact tool calls, collapsible search results, reduced panel padding
Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The dashboard UI had excessive vertical spacing across tool call blocks, session detail side panels, and the chat context panel, making content harder to scan. Session search results in the activity panel showed full content immediately, making each card very tall.
CSS — reduced padding/sizing
.tool-call-pill/.tool-call-parallel-pillmin-height30→22px, padding6px 10px→4px 8px;.tool-call-namemax-width12rem→10rem+ explicitfont-size: 0.75rem;.tool-call-expand-innerpadding0.7/0.85/0.8rem→0.4/0.65/0.5rem;.tool-call-nested-listgap0.35→0.2rem;.tool-call-panel-bodymax-height200→160px0.7rem 0.85rem→0.45rem 0.65rem; body padding0 0.75rem 0.75rem→0 0.5rem 0.5rem0.9rem 1rem→0.55rem 0.75rem; body padding0 1rem 1rem→0 0.75rem 0.6rem0.55rem 0.75rem→0.38rem 0.6rem.session-activity-panelpadding1rem→0.65rem+h3capped at0.85rem;.activity-itempadding0.7rem 0.8rem→0.5rem 0.65rem, margin-bottom0.6→0.4rem;.session-files-list/.file-previewpadding1rem→0.65rem;.file-itempadding0.75→0.5rem, margin-bottom0.6→0.4rem0.9rem 1rem→0.6rem 0.75rem; grid gap0.75→0.5rem; item padding0.65rem 0.75rem→0.45rem 0.55remJS + CSS — collapsible session search results
Replaced the flat
renderRequestResultActivitycall forsession-search-eventswith a dedicatedrenderSessionSearchActivityfunction. Each result now renders as a<details class="session-search-result">collapsed by default:New CSS classes added:
.session-search-result,.session-search-result summary,.session-search-result-body(max-height220px, scrollable,pre-wrap).Original prompt