Skip to content

Commit b4c3943

Browse files
committed
fix(web): position info panel to right side above toolbar
1 parent 26cab3d commit b4c3943

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

internal/web/templates.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2624,21 +2624,20 @@ code, pre, .session-id, .model-badge {
26242624
.search-match { background: rgba(255,220,0,0.3); }
26252625
.search-current { background: rgba(255,180,0,0.5); outline: 2px solid var(--primary); }
26262626
2627-
/* Info panel (floating above dock) */
2627+
/* Info panel (floating above dock, right-aligned) */
26282628
.info-panel {
26292629
position: fixed;
2630-
bottom: 80px;
2631-
left: 50%;
2632-
transform: translateX(-50%);
2630+
bottom: 90px;
2631+
right: 40px;
26332632
background: var(--bg);
26342633
border: 1px solid var(--border);
26352634
border-radius: 8px;
26362635
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
26372636
padding: 16px;
26382637
z-index: 200;
26392638
display: none;
2640-
min-width: 300px;
2641-
max-width: 400px;
2639+
min-width: 280px;
2640+
max-width: 360px;
26422641
}
26432642
.info-panel.show { display: block; }
26442643
.info-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; }

0 commit comments

Comments
 (0)