mirror of
https://github.com/go-gitea/gitea
synced 2024-11-16 07:04:25 +00:00
Fix large image overflow in comment page (#31740)
Close #31709 52px is calculate by avatar size in templates\repo\issue\view_content\comments.tmpl ```html <img src="{{.Poster.AvatarLink $.Context}}" width="40" height="40"> ``` + ```css .ui.comments .comment > .avatar ~ .content { margin-left: 12px; } ``` ![圖片](https://github.com/user-attachments/assets/bf15f4d4-1574-46f6-9f5e-1fbdbf1a98b0) --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
parent
ecbb03dc6d
commit
e546480d0a
@ -1,3 +1,3 @@
|
|||||||
<div class="field {{if not .item.VisibleOnForm}}tw-hidden{{end}}">
|
<div class="field {{if not .item.VisibleOnForm}}tw-hidden{{end}}">
|
||||||
<div>{{ctx.RenderUtils.MarkdownToHtml .item.Attributes.value}}</div>
|
<div class="markup">{{ctx.RenderUtils.MarkdownToHtml .item.Attributes.value}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -53,6 +53,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.comments .comment > .avatar ~ .content {
|
.ui.comments .comment > .avatar ~ .content {
|
||||||
|
Loading…
Reference in New Issue
Block a user