mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-11 00:01:26 -04:00
fix
This commit is contained in:
parent
69e05054cd
commit
22f9a514ea
@ -1,5 +1,5 @@
|
|||||||
{{range .GroupCommits}}
|
{{range $index, $groupCommit := .GroupCommits}}
|
||||||
<div class="ui timeline commits-list-group-by-date">
|
<div class="ui timeline commits-list-group-by-date" data-index="{{$index}}">
|
||||||
|
|
||||||
<div class="timeline-badge-wrapper">
|
<div class="timeline-badge-wrapper">
|
||||||
<div class="timeline-badge">
|
<div class="timeline-badge">
|
||||||
@ -9,11 +9,11 @@
|
|||||||
|
|
||||||
<div class="timeline-body">
|
<div class="timeline-body">
|
||||||
<h3 class="flex-text-block tw-py-2 timeline-heading">
|
<h3 class="flex-text-block tw-py-2 timeline-heading">
|
||||||
Commits on {{DateUtils.AbsoluteShort .Date}}
|
Commits on {{DateUtils.AbsoluteShort $groupCommit.Date}}
|
||||||
</h3>
|
</h3>
|
||||||
<div class="tw-flex tw-mt-2 timeline-list-container">
|
<div class="tw-flex tw-mt-2 timeline-list-container">
|
||||||
<ul class="commits-list">
|
<ul class="commits-list">
|
||||||
{{range .Commits}}
|
{{range $groupCommit.Commits}}
|
||||||
{{$commitRepoLink := $.RepoLink}}{{if $.CommitRepoLink}}{{$commitRepoLink = $.CommitRepoLink}}{{end}}
|
{{$commitRepoLink := $.RepoLink}}{{if $.CommitRepoLink}}{{$commitRepoLink = $.CommitRepoLink}}{{end}}
|
||||||
<li class="commits-list-item">
|
<li class="commits-list-item">
|
||||||
<div class="tw-pt-4 tw-pl-4 title">
|
<div class="tw-pt-4 tw-pl-4 title">
|
||||||
|
@ -2287,7 +2287,7 @@ tbody.commit-list {
|
|||||||
padding-bottom: 6px;
|
padding-bottom: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commits-list-group-by-date.timeline[data-index="1"] {
|
.commits-list-group-by-date.timeline[data-index="0"] {
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user