diff options
author | silverwind <me@silverwind.io> | 2023-04-07 23:30:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 17:30:04 -0400 |
commit | c0246677a692de804ffe1bb5f7d630fb002dd128 (patch) | |
tree | 43ffd8dc4240ec85af53decd892964dbb8167e5b /templates/repo/wiki/pages.tmpl | |
parent | 3876f56c7b62ad07856719b9897d20a427711e0f (diff) | |
download | gitea-c0246677a692de804ffe1bb5f7d630fb002dd128.tar.gz gitea-c0246677a692de804ffe1bb5f7d630fb002dd128.zip |
Fix markup background, improve wiki rendering (#23750)
Fix regression from https://github.com/go-gitea/gitea/pull/23578. Only
visible on arc-green.
Before:
<img width="997" alt="Screenshot 2023-03-27 at 19 14 21"
src="https://user-images.githubusercontent.com/115237/228016589-e7cabfb9-bfd0-45fd-9407-6b76c665ed1a.png">
After:
<img width="1000" alt="Screenshot 2023-03-27 at 19 14 05"
src="https://user-images.githubusercontent.com/115237/228016600-db2e6002-4e2c-4d18-8393-9d7e1f525acb.png">
Fixes: https://github.com/go-gitea/gitea/issues/20625
Fixes: https://github.com/go-gitea/gitea/issues/23718
Diffstat (limited to 'templates/repo/wiki/pages.tmpl')
-rw-r--r-- | templates/repo/wiki/pages.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/wiki/pages.tmpl b/templates/repo/wiki/pages.tmpl index 9d3a3e8061..743574d0a5 100644 --- a/templates/repo/wiki/pages.tmpl +++ b/templates/repo/wiki/pages.tmpl @@ -21,7 +21,7 @@ <a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a> </td> {{$timeSince := TimeSinceUnix .UpdatedUnix $.locale}} - <td class="text right grey">{{$.locale.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td> + <td class="text right">{{$.locale.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td> </tr> {{end}} </tbody> |