diff options
author | yp05327 <576951401@qq.com> | 2023-08-16 17:22:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 16:22:25 +0800 |
commit | 82f6e3d8454ca5848a40691b741535a35b5fcae8 (patch) | |
tree | 35789b488665d98821705c010aeeb853c7c92334 /templates | |
parent | 3e044d2c9fea7c197aa0476e2c9735320c112e03 (diff) | |
download | gitea-82f6e3d8454ca5848a40691b741535a35b5fcae8.tar.gz gitea-82f6e3d8454ca5848a40691b741535a35b5fcae8.zip |
Improve deadline icon location in milestone list page (#26532)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/issue/milestones.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/milestones.tmpl b/templates/repo/issue/milestones.tmpl index 5ca03c938d..b887a555aa 100644 --- a/templates/repo/issue/milestones.tmpl +++ b/templates/repo/issue/milestones.tmpl @@ -95,7 +95,7 @@ {{$.locale.Tr "repo.milestones.closed" $closedDate | Safe}} {{else}} {{if .DeadlineString}} - <span{{if .IsOverdue}} class="text red"{{end}}> + <span class="flex-text-inline {{if .IsOverdue}}text red{{end}}"> {{svg "octicon-calendar" 14}} {{DateTime "short" .DeadlineString}} </span> |