Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always use HTML attributes for avatar size #31509

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/repo/editor/commit_form.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="commit-form-wrapper">
{{ctx.AvatarUtils.Avatar .SignedUser 48 "commit-avatar"}}
{{ctx.AvatarUtils.Avatar .SignedUser 40 "commit-avatar"}}
<div class="commit-form">
<h3>{{- if .CanCommitToBranch.WillSign}}
<span title="{{ctx.Locale.Tr "repo.signing.will_sign" .CanCommitToBranch.SigningKey}}">{{svg "octicon-lock" 24}}</span>
Expand Down
6 changes: 3 additions & 3 deletions templates/repo/graph/commits.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,16 @@
{{end}}
{{end}}
</span>
<span class="author tw-flex tw-items-center tw-mr-2">
<span class="author tw-flex tw-items-center tw-mr-2 tw-gap-[1px]">
{{$userName := $commit.Commit.Author.Name}}
{{if $commit.User}}
{{if and $commit.User.FullName DefaultShowFullName}}
{{$userName = $commit.User.FullName}}
{{end}}
<span class="tw-mr-1">{{ctx.AvatarUtils.Avatar $commit.User}}</span>
{{ctx.AvatarUtils.Avatar $commit.User 18}}
<a href="{{$commit.User.HomeLink}}">{{$userName}}</a>
{{else}}
<span class="tw-mr-1">{{ctx.AvatarUtils.AvatarByEmail $commit.Commit.Author.Email $userName}}</span>
{{ctx.AvatarUtils.AvatarByEmail $commit.Commit.Author.Email $userName 18}}
{{$userName}}
{{end}}
</span>
Expand Down
4 changes: 2 additions & 2 deletions templates/repo/shabox_badge.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<div title="{{if eq .verification.TrustStatus "trusted"}}{{else if eq .verification.TrustStatus "untrusted"}}{{ctx.Locale.Tr "repo.commits.signed_by_untrusted_user"}}: {{else}}{{ctx.Locale.Tr "repo.commits.signed_by_untrusted_user_unmatched"}}: {{end}}{{.verification.Reason}}">
{{if ne .verification.SigningUser.ID 0}}
{{svg "gitea-lock"}}
{{ctx.AvatarUtils.Avatar .verification.SigningUser 28 "signature"}}
{{ctx.AvatarUtils.Avatar .verification.SigningUser 16 "signature"}}
{{else}}
<span title="{{ctx.Locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog"}}</span>
{{ctx.AvatarUtils.AvatarByEmail .verification.SigningEmail "" 28 "signature"}}
{{ctx.AvatarUtils.AvatarByEmail .verification.SigningEmail "" 16 "signature"}}
{{end}}
</div>
{{else}}
Expand Down
2 changes: 1 addition & 1 deletion templates/repo/user_cards.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{range .Cards}}
<li class="item ui segment">
<a href="{{.HomeLink}}">
{{ctx.AvatarUtils.Avatar .}}
{{ctx.AvatarUtils.Avatar . 48}}
</a>
<h3 class="name"><a href="{{.HomeLink}}">{{.DisplayName}}</a></h3>

Expand Down
6 changes: 0 additions & 6 deletions web_src/css/features/gitgraph.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,6 @@
padding-bottom: 1px;
}

#git-graph-container #rev-list .author img.ui.avatar {
width: auto;
height: 18px;
max-width: none;
}

#git-graph-container #graph-raw-list {
margin: 0;
}
Expand Down
12 changes: 1 addition & 11 deletions web_src/css/features/tribute.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
.tribute-container li span.fullname {
font-weight: var(--font-weight-normal);
font-size: 0.8rem;
margin-left: 3px;
}

.tribute-container li.highlight,
Expand All @@ -29,14 +28,5 @@
.tribute-item {
display: flex;
align-items: center;
}

.tribute-item .emoji,
.tribute-item img[src*="/avatar/"] {
margin-right: 0.5rem;
}

.tribute-container img {
width: 1.5rem !important;
height: 1.5rem !important;
gap: 6px;
}
4 changes: 0 additions & 4 deletions web_src/css/modules/comment.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
background: none;
}

.ui.comments .comment .avatar {
width: 30px;
}

.ui.comments .comment > .content {
display: flex;
flex-direction: column;
Expand Down
2 changes: 0 additions & 2 deletions web_src/css/org.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@
}

.page-content.organization .members .ui.avatar {
width: 48px;
height: 48px;
margin-right: 5px;
margin-bottom: 5px;
}
Expand Down
30 changes: 2 additions & 28 deletions web_src/css/repo.css
Original file line number Diff line number Diff line change
Expand Up @@ -460,14 +460,12 @@ td .commit-summary {
}

.repository.file.editor .commit-form-wrapper {
padding-left: 64px;
padding-left: 48px;
}

.repository.file.editor .commit-form-wrapper .commit-avatar {
float: left;
margin-left: -64px;
width: 3em;
height: auto;
margin-left: -48px;
}

.repository.file.editor .commit-form-wrapper .commit-form {
Expand Down Expand Up @@ -535,10 +533,6 @@ td .commit-summary {
min-width: 100px;
}

#new-issue .comment .avatar {
width: 3em;
}

.repository.new.issue .comment.form .content::before,
.repository.new.issue .comment.form .content::after {
right: 100%;
Expand Down Expand Up @@ -1216,16 +1210,6 @@ td .commit-summary {
border: 1px solid var(--color-light-border);
}

.repository #commits-table td.sha .sha.label .ui.signature.avatar,
.repository #repo-files-table .sha.label .ui.signature.avatar,
.repository #repo-file-commit-box .sha.label .ui.signature.avatar,
.repository #rev-list .sha.label .ui.signature.avatar,
.repository .timeline-item.commits-list .singular-commit .sha.label .ui.signature.avatar {
height: 16px;
margin-bottom: 0;
width: 16px;
}

.repository #commits-table td.sha .sha.label .detail.icon,
.repository #repo-files-table .sha.label .detail.icon,
.repository #repo-file-commit-box .sha.label .detail.icon,
Expand All @@ -1242,14 +1226,6 @@ td .commit-summary {
border-bottom-left-radius: 0;
}

.repository #commits-table td.sha .sha.label .detail.icon img,
.repository #repo-files-table .sha.label .detail.icon img,
.repository #repo-file-commit-box .sha.label .detail.icon img,
.repository #rev-list .sha.label .detail.icon img,
.repository .timeline-item.commits-list .singular-commit .sha.label .detail.icon img {
margin-right: 0;
}

.repository #commits-table td.sha .sha.label .detail.icon .svg,
.repository #repo-files-table .sha.label .detail.icon .svg,
.repository #repo-file-commit-box .sha.label .detail.icon .svg,
Expand Down Expand Up @@ -1931,8 +1907,6 @@ td .commit-summary {
}

.user-cards .list .item .avatar {
width: 48px;
height: 48px;
float: left;
display: block;
margin-right: 10px;
Expand Down
2 changes: 1 addition & 1 deletion web_src/js/features/tribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function makeCollections({mentions, emoji}) {
menuItemTemplate: (item) => {
return `
<div class="tribute-item">
<img src="${htmlEscape(item.original.avatar)}" class="tw-mr-2"/>
<img src="${htmlEscape(item.original.avatar)}" width="21" height="21"/>
<span class="name">${htmlEscape(item.original.name)}</span>
${item.original.fullname && item.original.fullname !== '' ? `<span class="fullname">${htmlEscape(item.original.fullname)}</span>` : ''}
</div>
Expand Down