1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-15 06:57:20 +00:00

Fix issue markdown bugs (#17413)

* Bug fix: render Markdown `http://AppURL/org/repo/issues/4?a=1&b=2#comment-123 test` to HTML correctly, close #17394
* Bug fix: fix the positions of checkboxes in rendered HTML, close #17395

# Conflicts:
#	modules/markup/html.go
This commit is contained in:
wxiaoguang
2021-10-23 23:30:46 +08:00
committed by GitHub
parent 3aecea2e6e
commit 175ebc6f88
3 changed files with 9 additions and 2 deletions

View File

@ -158,9 +158,12 @@
.task-list-item {
list-style-type: none;
position: relative;
input[type="checkbox"] {
margin: 0 6px .25em -1.6em;
position: absolute;
top: .25em;
left: -1.6em;
}
}