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.

Use `hidden` over `clip` for text truncation (#26520)

Avoid browser bugs:

- Firefox not cutting off -
https://github.com/go-gitea/gitea/pull/26354#issuecomment-1678456052
- Safari not showing ellipsis -
https://github.com/go-gitea/gitea/pull/26354#issuecomment-1678812801

authored by

silverwind and committed by
GitHub
27e4ac3e 79d74d20

+1 -1
+1 -1
web_src/css/base.css
··· 1235 1235 } 1236 1236 1237 1237 .ui .text.truncate { 1238 - overflow-x: clip; 1238 + overflow-x: hidden; 1239 1239 text-overflow: ellipsis; 1240 1240 white-space: nowrap; 1241 1241 display: inline-block;