From ed678b9d4582d473454fbdc9368ffc85f8757e9a Mon Sep 17 00:00:00 2001 From: Shudhanshu Singh Date: Wed, 15 Jul 2026 22:36:34 +0530 Subject: [PATCH] fix(actions): make job list item fully clickable (#38462) Clicking the empty space to the right of a job in the Actions sidebar didn't switch jobs: the interactive ``/` - + {{ item.job.name }} {{ item.job.duration }} - + @@ -450,10 +455,11 @@ onBeforeUnmount(() => { } .caller-row-toggle { + width: 100%; border: none; - padding: 0; background: transparent; color: inherit; + line-height: inherit; /* buttons don't inherit line-height; match the rows' row height */ cursor: pointer; text-align: inherit; } @@ -483,13 +489,13 @@ onBeforeUnmount(() => { } .action-view-sidebar-list > .item:hover .job-rerun-button, -.action-view-sidebar-list > .item:has(a:focus) .job-rerun-button { +.action-view-sidebar-list > .item:focus .job-rerun-button { display: inline-flex; } /* only swap out the duration when a re-run button exists to take its place */ .action-view-sidebar-list > .item:hover .job-rerun-button ~ .job-duration, -.action-view-sidebar-list > .item:has(a:focus) .job-rerun-button ~ .job-duration { +.action-view-sidebar-list > .item:focus .job-rerun-button ~ .job-duration { display: none; }