* Fix bug#20308,20299

This commit is contained in:
zenggang
2022-03-04 09:24:28 +00:00
parent 47cdcb88b1
commit 943c0d3c1a
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -517,7 +517,7 @@ class GitRepo
if(!scm::checkRevision($version)) return array();
if($version == 'HEAD' and $branch) $version = $branch;
$revision = empty($version) ? $revision : $version;
$revision = $version;
$revision = is_numeric($revision) ? "--skip=$revision $branch" : $revision;
$count = $count == 0 ? '' : "-n $count";
+2
View File
@@ -81,7 +81,9 @@ h3 {font-size: 16px;}
.repoCode tr.commented .comment-btn .icon-wrapper > i:before {font-size: 18px; transform: scale(-1, 1); display: inline-block;}
.repoCode tr.commented .comment-btn .icon-wrapper:before {display: none;}
.repoCode tr.over.commented .comment-btn {margin-left: -20px; width: 25px; height:18px;}
.repoCode tr.over.commented .comment-btn .icon-wrapper, .repoCode tr.selected.commented .comment-btn .icon-wrapper {line-height: 20px; height: 20px; background: #4183C4; color: #fff; left: -6px;}
.repoCode tr.over.commented .comment-btn .icon-wrapper {left: 13px;}
.repoCode tr.over.commented .comment-btn .icon-wrapper > i:before {font-size: 14px;}
.repoCode tr.selected.commented .comment-btn .icon-wrapper > i:before {font-size: 14px;}
.repoCode tr.over.commented .comment-btn .icon-wrapper:before, .repoCode tr.selected.commented .comment-btn .icon-wrapper:before {display: block;}