Skip to content

Commit

Permalink
css: Remove border of comment and voter icon at Subtask list
Browse files Browse the repository at this point in the history
  • Loading branch information
doortts committed Sep 25, 2017
1 parent 41031de commit b76bd36
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions app/assets/stylesheets/less/_page.less
Original file line number Diff line number Diff line change
Expand Up @@ -7042,3 +7042,9 @@ div.diff-body[data-outdated="true"] tr:hover .icon-comment {
padding: 0 5px;
color: #03a9f4;
}

.no-border-at-child {
.item-count-groups {
border: none !important;
}
}
4 changes: 2 additions & 2 deletions app/views/issue/view.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@
<span class="state-label open"></span>
<a href="@routes.IssueApp.issue(childIssue.project.owner, childIssue.project.name, childIssue.getNumber)">
<span class="item-name"><span class="subtask-number">#@childIssue.getNumber</span> @childIssue.title@if(childIssue.assignee != null) { - @childIssue.assignee.user.getPureNameOnly}</span></a>
<span class="font12">@common.commentAndVoterPairDisplay(childIssue, project)</span>
<span class="font12 no-border-at-child">@common.commentAndVoterPairDisplay(childIssue, project)</span>
</div>
}
@for(childIssue <- closedChildIssues) {
<div class="issue-item @if(childIssue.id == issue.id){bold}">
<span class="state-label closed"><i class=" yobicon-checkmark"></i></span>
<a href="@routes.IssueApp.issue(childIssue.project.owner, childIssue.project.name, childIssue.getNumber)">
<span class="item-name"><span class="subtask-number">#@childIssue.getNumber</span> @childIssue.title@if(childIssue.assignee != null){ - @childIssue.assignee.user.getPureNameOnly}</span></a>
<span class="font12">@common.commentAndVoterPairDisplay(childIssue, project)</span>
<span class="font12 no-border-at-child">@common.commentAndVoterPairDisplay(childIssue, project)</span>
</div>
}
</div>
Expand Down

0 comments on commit b76bd36

Please sign in to comment.