Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion public/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,15 @@ body.shells-locked .container-actions{display:none}
.container-item.compact .ci-bot{align-items:flex-start}
.container-item.compact .ci-cpu{white-space:nowrap}
/* Action buttons now ride inline in the top row (saves a row); align to the right. */
.ci-top .container-actions,.ci-row1 .container-actions{margin:0;flex:0 0 auto;margin-left:auto}
.ci-row1 .container-actions{margin:0;flex:0 0 auto;margin-left:auto}
/* Compact (remote) rows: float the action buttons at the right, revealed on hover/focus, so they
never crowd the line or wrap at narrow sidebar widths. */
.container-item.compact{position:relative}
.container-item.compact .container-actions{position:absolute;top:50%;right:6px;transform:translateY(-50%);margin:0;opacity:0;pointer-events:none;transition:opacity .12s ease;background:rgba(5,11,17,.92);border:1px solid rgba(139,246,255,.18);border-radius:7px;padding:2px;gap:4px}
.container-item.compact:hover .container-actions,.container-item.compact:focus-within .container-actions{opacity:1;pointer-events:auto}
.container-item.compact .container-action{padding:2px 7px}
/* No hover on touch — keep the buttons in flow on their own line there. */
@media (hover:none){.container-item.compact .container-actions{position:static;transform:none;opacity:1;pointer-events:auto;background:none;border:0;justify-content:flex-end;margin-top:3px}}
.container-item .ci-row1{align-items:flex-start}
/* Condensed 2-line container row for remote host cards. */
.container-item.compact{padding:6px 9px;gap:2px}
Expand Down