]> source.dussan.org Git - gitea.git/commit
fix br display for packages curls (#23737)
authorHester Gong <hestergong@gmail.com>
Tue, 28 Mar 2023 05:18:01 +0000 (13:18 +0800)
committerGitHub <noreply@github.com>
Tue, 28 Mar 2023 05:18:01 +0000 (01:18 -0400)
commitf401337f64702c849b1592f54f39b118e73eeb00
tree7d94fc8c4d48eed701c46c1672a90cb0e18987c2
parent8df1b4bd699897264c60da7ce982b09cee57f345
fix br display for packages curls (#23737)

Before:
<img width="1403" alt="截屏2023-03-27 15 48 23"
src="https://user-images.githubusercontent.com/17645053/227875392-399debf7-db75-4d9a-9436-409f75447c65.png">
This happens because the `<br>` matches this
[rule](https://github.com/go-gitea/gitea/blob/e6e602fd8d35471f1e2f4a42669a1f17e76e0176/web_src/css/markup/content.css#L428),
which is not necessary here (This is introduced by #22861, did a quick
check, and this is the only place used `<br>` inside `<code>` from the
PR):
```css
.markup code br,
.markup tt br {
  display: none;
}
```

After:
<img width="1398" alt="截屏2023-03-27 15 46 50"
src="https://user-images.githubusercontent.com/17645053/227875244-b7fba432-b32c-42f7-9517-4e05bb2e64ea.png">

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
templates/package/content/generic.tmpl