mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-16 17:57:12 +02:00
Clicking the empty space to the right of a job in the Actions sidebar didn't switch jobs: the interactive `<a>`/`<button>` used `display: contents` and so generated no clickable box. Fixes: https://github.com/go-gitea/gitea/issues/38460 Drop the wrapper `div` and `display: contents`, moving the `.item` and layout styles directly onto the `<a>`/`<button>` so the whole row is clickable. Reusable-caller `<button>` rows also get `width: 100%` and `line-height: inherit` to match the `<a>` rows. --------- Co-authored-by: silverwind <me@silverwind.io>