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 input `line-height` cutting off `g` (#25334)

Fix the incomplete display of input text
Before:

![image](https://github.com/go-gitea/gitea/assets/89133723/6bd8ca29-a096-46a8-bd23-fb833f45186f)

![image](https://github.com/go-gitea/gitea/assets/89133723/27e51e62-7150-45cd-8606-09317d462d70)
After:

![image](https://github.com/go-gitea/gitea/assets/89133723/8d0db5d3-d768-42b4-9a75-0b8816f0a299)

![image](https://github.com/go-gitea/gitea/assets/89133723/4193adc9-b635-4ed6-8e11-715ec5150563)

---------

Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Giteabot <teabot@gitea.io>

authored by

hiifong
silverwind
Giteabot
and committed by
GitHub
1069472c c71e8abb

+5
+5
web_src/css/base.css
··· 471 471 padding-top: 15px !important; 472 472 } 473 473 474 + /* fix Fomantic's line-height cutting off "g" on Windows Chrome with Segoe UI */ 475 + .ui.input > input { 476 + line-height: 1.3; 477 + } 478 + 474 479 .ui.input.focus > input, 475 480 .ui.input > input:focus { 476 481 border-color: var(--color-primary);