1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Fix "stop time tracking button" on navbar (#33084) (#33300)

Backport #33084 (no conflict)
Fix #33299, and remove incorrect translations
This commit is contained in:
wxiaoguang
2025-01-17 04:48:31 +08:00
committed by GitHub
parent c09e43acf5
commit 52d298890b
5 changed files with 4 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ func (st *Sanitizer) createDefaultPolicy() *bluemonday.Policy {
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^(unchecked|checked|indeterminate)$`)).OnElements("li")
// Allow 'color' and 'background-color' properties for the style attribute on text elements.
policy.AllowStyles("color", "background-color").OnElements("span", "p")
policy.AllowStyles("color", "background-color").OnElements("div", "span", "p", "tr", "th", "td")
policy.AllowAttrs("src", "autoplay", "controls").OnElements("video")