diff options
author | silverwind <me@silverwind.io> | 2023-05-11 00:27:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 22:27:02 +0000 |
commit | 67db6b697636221e09536e89ac8600a47f79b5cb (patch) | |
tree | 44b0de650384c1de8712ca5a7b1a50f28914c310 /templates/repo/header.tmpl | |
parent | f7ede92f82f7f3ec7bb31a1249f9524e5b728f34 (diff) | |
download | gitea-67db6b697636221e09536e89ac8600a47f79b5cb.tar.gz gitea-67db6b697636221e09536e89ac8600a47f79b5cb.zip |
RSS icon fixes (#24476)
Fix regression from https://github.com/go-gitea/gitea/pull/24471 where
CSS rules for `.icon.grey` were removed which were in use by the RSS
icons.
Gave them their own class instead, removed a wrapper and also fixed
vertical alignment on them. Additionally, did a few related fixes on the
org header for alignment.
Fixes: https://github.com/go-gitea/gitea/issues/24584
<img width="196" alt="Screenshot 2023-05-01 at 22 39 40"
src="https://user-images.githubusercontent.com/115237/235528228-959e2385-c1d2-4d5c-baec-e3784d459653.png">
<img width="216" alt="Screenshot 2023-05-01 at 22 44 20"
src="https://user-images.githubusercontent.com/115237/235528231-95cbff86-5672-48eb-b214-8bdcefa1612c.png">
<img width="120" alt="Screenshot 2023-05-01 at 22 56 36"
src="https://user-images.githubusercontent.com/115237/235529844-b94ab554-3259-4d0c-b040-82aed7d1a111.png">
<img width="372" alt="Screenshot 2023-05-01 at 22 54 25"
src="https://user-images.githubusercontent.com/115237/235529744-1a9c201b-5692-4122-9765-2f201a322a9e.png">
<img width="477" alt="Screenshot 2023-05-01 at 22 55 28"
src="https://user-images.githubusercontent.com/115237/235529748-62188554-9927-42ef-bc94-7052bce266e2.png">
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'templates/repo/header.tmpl')
-rw-r--r-- | templates/repo/header.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index b36d1d8f6a..b2fd0710af 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -13,9 +13,6 @@ <a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> <div class="gt-mx-2">/</div> <a href="{{$.RepoLink}}">{{.Name}}</a> - {{if $.EnableFeed}} - <a href="{{$.RepoLink}}.rss"><i class="ui grey icon gt-ml-3" data-tooltip-content="{{$.locale.Tr "rss_feed"}}">{{svg "octicon-rss" 18}}</i></a> - {{end}} <div class="labels gt-df gt-ac gt-fw"> {{if .IsTemplate}} {{if .IsPrivate}} @@ -38,6 +35,9 @@ <span class="ui basic label">{{$.locale.Tr "repo.desc.archived"}}</span> {{end}} </div> + {{if $.EnableFeed}} + <a class="muted gt-ml-3" href="{{$.RepoLink}}.rss" data-tooltip-content="{{$.locale.Tr "rss_feed"}}">{{svg "octicon-rss" 18}}</a> + {{end}} </div> {{if $.IsPullMirror}} {{$address := MirrorRemoteAddress $.Context . $.Mirror.GetRemoteName false}} |