File tree 3 files changed +19
-10
lines changed
3 files changed +19
-10
lines changed Original file line number Diff line number Diff line change 62
62
</div>
63
63
64
64
{{if or .Labels .Assignees}}
65
- <div class="tw-flex tw-justify-between ">
66
- <div class="labels-list tw-flex-1 ">
65
+ <div class="issue-card-bottom ">
66
+ <div class="labels-list">
67
67
{{range .Labels}}
68
68
<a target="_blank" href="{{$.Issue.Repo.Link}}/issues?labels={{.ID}}">{{RenderLabel ctx ctx.Locale .}}</a>
69
69
{{end}}
70
70
</div>
71
- <div class="tw-flex tw-flex-wrap tw-content-start tw-gap-1 ">
71
+ <div class="issue-card-assignees ">
72
72
{{range .Assignees}}
73
73
<a target="_blank" href="{{.HomeLink}}" data-tooltip-content="{{ctx.Locale.Tr "repo.projects.column.assigned_to"}} {{.Name}}">{{ctx.AvatarUtils.Avatar . 28}}</a>
74
74
{{end}}
Original file line number Diff line number Diff line change @@ -2195,18 +2195,12 @@ td .commit-summary {
2195
2195
display : inline-flex;
2196
2196
flex-wrap : wrap;
2197
2197
gap : 2.5px ;
2198
- }
2199
-
2200
- .labels-list a {
2201
- display : flex;
2202
- text-decoration : none;
2198
+ align-items : center;
2203
2199
}
2204
2200
2205
2201
.labels-list .label {
2206
2202
padding : 0 6px ;
2207
- margin : 0 !important ;
2208
2203
min-height : 20px ;
2209
- display : inline-flex !important ;
2210
2204
line-height : 1.3 ; /* there is a `font-size: 1.25em` for inside emoji, so here the line-height needs to be larger slightly */
2211
2205
}
2212
2206
Original file line number Diff line number Diff line change 23
23
.issue-card .sortable-chosen .issue-card-title {
24
24
cursor : inherit;
25
25
}
26
+
27
+ .issue-card-bottom {
28
+ display : flex;
29
+ width : 100% ;
30
+ justify-content : space-between;
31
+ gap : 0.25em ;
32
+ }
33
+
34
+ .issue-card-assignees {
35
+ display : flex;
36
+ align-items : center;
37
+ gap : 0.25em ;
38
+ justify-content : end;
39
+ flex-wrap : wrap;
40
+ }
You can’t perform that action at this time.
0 commit comments