mirror of
https://github.com/go-gitea/gitea
synced 2025-07-07 11:07:20 +00: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:
@ -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;
|
||||
}
|
||||
|
@ -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,
|
||||
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user