diff options
author | silverwind <me@silverwind.io> | 2023-08-31 23:28:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 21:28:45 +0000 |
commit | 9b76df53dc5c03b059bef784f15eaa96342ab63c (patch) | |
tree | dbd9592c611d56e0a5ac62a1040d942d80a6e5d3 /templates/package/shared/list.tmpl | |
parent | c0ab7070e56f1de390d2e7d6a95083137041a572 (diff) | |
download | gitea-9b76df53dc5c03b059bef784f15eaa96342ab63c.tar.gz gitea-9b76df53dc5c03b059bef784f15eaa96342ab63c.zip |
Minor dashboard tweaks, fix flex-list margins (#26829)
Some small dashboard tweaks:
- Remove margin-bottom from divider so first item does not appear to
have un-equal margins
- Restore previous icon color
- Add slight margin-right to icon
Before:
<img width="783" alt="Screenshot 2023-08-31 at 00 10 28"
src="https://github.com/go-gitea/gitea/assets/115237/b75f70d7-8704-4afb-866d-fea0484c52d4">
After:
<img width="783" alt="Screenshot 2023-08-31 at 00 10 08"
src="https://github.com/go-gitea/gitea/assets/115237/50ed0c47-6f7c-449e-a054-13091369d43f">
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'templates/package/shared/list.tmpl')
-rw-r--r-- | templates/package/shared/list.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/package/shared/list.tmpl b/templates/package/shared/list.tmpl index 7cc11b073e..afa360fd93 100644 --- a/templates/package/shared/list.tmpl +++ b/templates/package/shared/list.tmpl @@ -12,8 +12,9 @@ <button class="ui primary button">{{.locale.Tr "explore.search"}}</button> </div> </form> -<div class="{{if .PackageDescriptors}}flex-list{{end}} gt-pt-4"> +<div> {{range .PackageDescriptors}} + <div class="flex-list"> <div class="flex-item"> <div class="flex-item-main"> <div class="flex-item-title"> @@ -34,6 +35,7 @@ </div> </div> </div> + </div> {{else}} {{if not .HasPackages}} <div class="empty center"> @@ -46,7 +48,7 @@ <p>{{.locale.Tr "packages.empty.documentation" "https://docs.gitea.com/usage/packages/overview/" | Safe}}</p> </div> {{else}} - <p>{{.locale.Tr "packages.filter.no_result"}}</p> + <p class="gt-py-4">{{.locale.Tr "packages.filter.no_result"}}</p> {{end}} {{end}} {{template "base/paginate" .}} |