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.

Merge pull request '[PORT] Fix overflow for images on project cards (gitea#31683)' (#5029) from gusted/forgejo-bp-gt-31683 into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5029
Reviewed-by: 0ko <0ko@noreply.codeberg.org>
Reviewed-by: Otto <otto@codeberg.org>

Gusted 9111eb34 d9ae2318

+5 -2
+4 -1
web_src/css/features/projects.css
··· 78 78 .card-attachment-images { 79 79 display: inline-block; 80 80 white-space: nowrap; 81 - overflow: hidden; 81 + overflow: scroll; 82 + cursor: default; 82 83 text-align: center; 83 84 } 84 85 ··· 86 87 display: inline-block; 87 88 max-height: 50px; 88 89 border-radius: var(--border-radius); 90 + text-align: left; 89 91 margin-right: 2px; 92 + aspect-ratio: 1; 90 93 } 91 94 92 95 .card-attachment-images img:only-child {
+1 -1
web_src/css/repo/issue-card.css
··· 2 2 display: flex; 3 3 flex-direction: column; 4 4 gap: 4px; 5 - align-items: start; 5 + align-items: stretch; 6 6 border-radius: var(--border-radius); 7 7 padding: 8px 10px; 8 8 border: 1px solid var(--color-secondary);