diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-06-22 21:02:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 15:02:27 -0400 |
commit | daf62841f645e77affa0a50701a79d942c612500 (patch) | |
tree | 7839d7bf25a09b816b9b0ad1540511bd7f922be2 /templates/repo | |
parent | fc2f2c7602c0bea8de76172f6d3303eab374a01e (diff) | |
download | gitea-daf62841f645e77affa0a50701a79d942c612500.tar.gz gitea-daf62841f645e77affa0a50701a79d942c612500.zip |
Fix sticky diff stats container (#12002)
* Fix sticky diff stats container
* Use pure CSS sticky instead of Fomantic's JS
* add border color to arc-green
* add slight padding on sides
* make linter happy
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/diff/box.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/repo/diff/box.tmpl b/templates/repo/diff/box.tmpl index b6d1fdf3a0..cce297dc26 100644 --- a/templates/repo/diff/box.tmpl +++ b/templates/repo/diff/box.tmpl @@ -1,5 +1,5 @@ {{if .DiffNotAvailable}} - <div class="diff-detail-box diff-box ui sticky"> + <div class="diff-detail-box diff-box sticky"> <div> <div class="ui right"> {{if .PageIsPullFiles}} @@ -17,7 +17,7 @@ <h4>{{.i18n.Tr "repo.diff.data_not_available"}}</h4> {{else}} <div> - <div class="diff-detail-box diff-box ui sticky"> + <div class="diff-detail-box diff-box sticky"> <i class="fa fa-retweet"></i> {{.i18n.Tr "repo.diff.stats_desc" .Diff.NumFiles .Diff.TotalAddition .Diff.TotalDeletion | Str2html}} <div class="ui right"> @@ -192,7 +192,7 @@ <td class="add-comment-right"> {{if and $resolved (eq $line.GetCommentSide "proposed")}} <div class="ui top attached header"> - <span class="ui grey text left"><b>{{$resolveDoer.Name}}</b> {{$.i18n.Tr "repo.issues.review.resolved_by"}}</span> + <span class="ui grey text left"><b>{{$resolveDoer.Name}}</b> {{$.i18n.Tr "repo.issues.review.resolved_by"}}</span> <button id="show-outdated-{{(index $line.Comments 0).ID}}" data-comment="{{(index $line.Comments 0).ID}}" class="ui compact right labeled button show-outdated"> {{svg "octicon-unfold" 16}} {{$.i18n.Tr "repo.issues.review.show_resolved"}} @@ -200,7 +200,7 @@ <button id="hide-outdated-{{(index $line.Comments 0).ID}}" data-comment="{{(index $line.Comments 0).ID}}" class="hide ui compact right labeled button hide-outdated"> {{svg "octicon-fold" 16}} {{$.i18n.Tr "repo.issues.review.hide_resolved"}} - </button> + </button> </div> {{end}} {{if eq $line.GetCommentSide "proposed"}} |