diff options
author | silverwind <me@silverwind.io> | 2023-10-25 23:42:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 23:42:14 +0200 |
commit | 05aa91e6da54e0e8abd18d8dd2b5a29249c636ed (patch) | |
tree | 007da180c58a8919dd3650ecaf6387d342e7eee7 /templates | |
parent | ab3f6c1bac04ea43541d9abd5e7c21a67b0f6deb (diff) | |
download | gitea-05aa91e6da54e0e8abd18d8dd2b5a29249c636ed.tar.gz gitea-05aa91e6da54e0e8abd18d8dd2b5a29249c636ed.zip |
Add dedicated class for empty placeholders (#27788)
Fixes: https://github.com/go-gitea/gitea/issues/27784
<img width="1033" alt="Screenshot 2023-10-25 at 19 07 15"
src="https://github.com/go-gitea/gitea/assets/115237/1a363851-1a86-48cb-99ec-0a573371bb6e">
<img width="1051" alt="Screenshot 2023-10-25 at 19 07 41"
src="https://github.com/go-gitea/gitea/assets/115237/add4b606-2264-430a-af35-249ef005817f">
Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/package/shared/list.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/actions/runs_list.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/package/shared/list.tmpl b/templates/package/shared/list.tmpl index af79490f4d..a572d98bb6 100644 --- a/templates/package/shared/list.tmpl +++ b/templates/package/shared/list.tmpl @@ -38,7 +38,7 @@ </div> {{else}} {{if not .HasPackages}} - <div class="empty center"> + <div class="empty-placeholder"> {{svg "octicon-package" 48}} <h2>{{ctx.Locale.Tr "packages.empty"}}</h2> {{if and .Repository .CanWritePackages}} diff --git a/templates/repo/actions/runs_list.tmpl b/templates/repo/actions/runs_list.tmpl index 37b19f0bdc..b3469a2edc 100644 --- a/templates/repo/actions/runs_list.tmpl +++ b/templates/repo/actions/runs_list.tmpl @@ -1,6 +1,6 @@ <div class="flex-list"> {{if eq (len .Runs) 0}} - <div class="empty center"> + <div class="empty-placeholder"> {{svg "octicon-no-entry" 48}} <h2>{{if $.IsFiltered}}{{ctx.Locale.Tr "actions.runs.no_results"}}{{else}}{{ctx.Locale.Tr "actions.runs.no_runs"}}{{end}}</h2> </div> |