loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix alignment in actions right view (#29979)

Fixes: https://github.com/go-gitea/gitea/issues/29974, Regression from
https://github.com/go-gitea/gitea/pull/29640.

Depending on the number of steps on the left side, the right side will
vertically expand. Collapse it with `align-self`.

<img width="1308" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/9bcede9c-d869-4f3f-8a10-026c74c03f71">

(cherry picked from commit a4455d313e2c129dc9734292035b89339577174d)

authored by

silverwind and committed by
Earl Warren
82e83d30 3aa6f17e

+2 -3
+2 -3
web_src/js/components/RepoActionView.vue
··· 637 637 flex-direction: column; 638 638 border: 1px solid var(--color-console-border); 639 639 border-radius: var(--border-radius); 640 + background: var(--color-console-bg); 641 + align-self: flex-start; 640 642 } 641 643 642 644 /* begin fomantic button overrides */ ··· 696 698 justify-content: space-between; 697 699 align-items: center; 698 700 padding: 0 12px; 699 - background-color: var(--color-console-bg); 700 701 position: sticky; 701 702 top: 0; 702 - border-radius: var(--border-radius); 703 703 height: 60px; 704 704 z-index: 1; 705 705 } ··· 720 720 } 721 721 722 722 .job-step-container { 723 - background-color: var(--color-console-bg); 724 723 max-height: 100%; 725 724 border-radius: 0 0 var(--border-radius) var(--border-radius); 726 725 border-top: 1px solid var(--color-console-border);