forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add org avatar on top of internal repo icon (go-gitea#11895)
* Add org avatar on top of internal repo icon * add color for arc-green * use wrapper div to avoid negative margins * rename class and move div * move div to icon tmpl * remove unnecessary margin for lock octicon * fix label align together with go-gitea#11891 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
- Loading branch information
1 parent
e8f63ad
commit 143bddb
Showing
4 changed files
with
45 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
{{if $.IsTemplate}} | ||
{{if $.IsPrivate}} | ||
{{svg "octicon-repo-template-private" 32}} | ||
<div class="repo-header-icon"> | ||
{{if $.IsTemplate}} | ||
{{if $.IsPrivate}} | ||
{{svg "octicon-repo-template-private" 32}} | ||
{{else}} | ||
{{svg "octicon-repo-template" 32}} | ||
{{end}} | ||
{{else}} | ||
{{svg "octicon-repo-template" 32}} | ||
{{end}} | ||
{{else}} | ||
{{if $.IsPrivate}} | ||
{{svg "octicon-lock" 32}} | ||
{{else if and (not $.IsMirror) (not $.IsFork) ($.Owner)}} | ||
{{if $.Owner.Visibility.IsPrivate}} | ||
{{svg "octicon-internal-repo" 32}} | ||
{{if $.IsPrivate}} | ||
{{svg "octicon-lock" 32}} | ||
{{else if and (not $.IsMirror) (not $.IsFork) ($.Owner)}} | ||
{{if $.Owner.Visibility.IsPrivate}} | ||
{{svg "octicon-internal-repo" 32}} | ||
<img class="ui avatar image" src="{{$.Owner.RelAvatarLink}}"> | ||
{{else}} | ||
{{svg "octicon-repo" 32}} | ||
{{end}} | ||
{{else if $.IsMirror}} | ||
{{svg "octicon-repo-clone" 32}} | ||
{{else if $.IsFork}} | ||
{{svg "octicon-repo-forked" 32}} | ||
{{else}} | ||
{{svg "octicon-repo" 32}} | ||
{{end}} | ||
{{else if $.IsMirror}} | ||
{{svg "octicon-repo-clone" 32}} | ||
{{else if $.IsFork}} | ||
{{svg "octicon-repo-forked" 32}} | ||
{{else}} | ||
{{svg "octicon-repo" 32}} | ||
{{end}} | ||
{{end}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters