mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Always use HTML attributes for avatar size (#31509)
Many avatars were rendered in HTML with certain width/height but then resized again in CSS. This was pointless so I removed all these cases and made the HTML size match the previous render size. Also did a few CSS cleanups in the tribute rendering: <img width="648" alt="image" src="https://github.com/go-gitea/gitea/assets/115237/cb2fafb3-5e20-46e9-814f-07df20038beb">
This commit is contained in:
		| @@ -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 { | ||||
| @@ -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%; | ||||
| @@ -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, | ||||
| @@ -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, | ||||
| @@ -1931,8 +1907,6 @@ td .commit-summary { | ||||
| } | ||||
|  | ||||
| .user-cards .list .item .avatar { | ||||
|   width: 48px; | ||||
|   height: 48px; | ||||
|   float: left; | ||||
|   display: block; | ||||
|   margin-right: 10px; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user