Show votes as a bar
This commit is contained in:
parent
5ca31aa252
commit
a5164ea2ed
|
@ -407,21 +407,46 @@ p.time {
|
|||
}
|
||||
|
||||
.votes {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
padding: 4px 0;
|
||||
margin: 2px 0;
|
||||
font-size: 13px;
|
||||
line-height: 15px;
|
||||
.progress {
|
||||
height: 4px;
|
||||
margin: 0;
|
||||
.bar {
|
||||
float: left;
|
||||
height: 100%;
|
||||
}
|
||||
.bar-success {
|
||||
background-color: #468847;
|
||||
@include bg-gradient(#62C462, #51A351);
|
||||
}
|
||||
.bar-danger {
|
||||
background-color: #B94A48;
|
||||
@include bg-gradient(#EE5F5B, #BD362F);
|
||||
}
|
||||
}
|
||||
.upvotes {
|
||||
display: inline-block;
|
||||
color: #468847;
|
||||
padding: 0 4px;
|
||||
margin: 0 2px;
|
||||
}
|
||||
.downvotes {
|
||||
display: inline-block;
|
||||
color: #B94A48;
|
||||
padding: 0 4px;
|
||||
margin: 0 2px;
|
||||
}
|
||||
}
|
||||
.votes-block {
|
||||
margin: 14px 6px 6px 0;
|
||||
.downvotes {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.votes-inline {
|
||||
display: inline-block;
|
||||
margin: 0 8px;
|
||||
.progress {
|
||||
display: inline-block;
|
||||
padding: 0 0 2px;
|
||||
width: 45px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,12 @@
|
|||
- else
|
||||
|
||||
|
||||
- if issue.upvotes > 0
|
||||
%span.badge.badge-success= "+#{issue.upvotes}"
|
||||
- if issue.downvotes > 0
|
||||
%span.badge.badge-important= "-#{issue.downvotes}"
|
||||
- if issue.votes_count > 0
|
||||
.votes.votes-inline
|
||||
.upvotes= issue.upvotes
|
||||
.progress
|
||||
- up_percent = 100.0/issue.votes_count*issue.upvotes
|
||||
- down_percent = 100.0-up_percent
|
||||
.bar.bar-success{style: "width: #{up_percent}%;"}
|
||||
.bar.bar-danger{style: "width: #{down_percent}%;"}
|
||||
.downvotes= issue.downvotes
|
||||
|
|
|
@ -16,16 +16,21 @@
|
|||
%i.icon-edit
|
||||
Edit
|
||||
|
||||
%br
|
||||
.votes#votes
|
||||
Votes:
|
||||
.upvotes#upvotes= "#{@issue.upvotes} up"
|
||||
.downvotes#downvotes= "#{@issue.downvotes} down"
|
||||
.right
|
||||
.span3.votes.votes-block#votes
|
||||
.progress
|
||||
- up_percent = 100.0/@issue.votes_count*@issue.upvotes
|
||||
- down_percent = 100.0-up_percent
|
||||
.bar.bar-success{style: "width: #{up_percent}%;"}
|
||||
.bar.bar-danger{style: "width: #{down_percent}%;"}
|
||||
.upvotes= "#{@issue.upvotes} up"
|
||||
.downvotes= "#{@issue.downvotes} down"
|
||||
|
||||
.back_link
|
||||
= link_to project_issues_path(@project) do
|
||||
← To issues list
|
||||
|
||||
|
||||
.main_box
|
||||
.top_box_content
|
||||
%h4
|
||||
|
|
|
@ -23,7 +23,12 @@
|
|||
authored by #{merge_request.author_name}
|
||||
= time_ago_in_words(merge_request.created_at)
|
||||
ago
|
||||
- if merge_request.upvotes > 0
|
||||
%span.badge.badge-success= "+#{merge_request.upvotes}"
|
||||
- if merge_request.downvotes > 0
|
||||
%span.badge.badge-important= "-#{merge_request.downvotes}"
|
||||
- if merge_request.votes_count > 0
|
||||
.votes.votes-inline
|
||||
.upvotes= merge_request.upvotes
|
||||
.progress
|
||||
- up_percent = 100.0/merge_request.votes_count*merge_request.upvotes
|
||||
- down_percent = 100.0-up_percent
|
||||
.bar.bar-success{style: "width: #{up_percent}%;"}
|
||||
.bar.bar-danger{style: "width: #{down_percent}%;"}
|
||||
.downvotes= merge_request.downvotes
|
||||
|
|
|
@ -23,12 +23,15 @@
|
|||
%i.icon-edit
|
||||
Edit
|
||||
|
||||
%br
|
||||
.votes#votes
|
||||
Votes:
|
||||
.upvotes#upvotes= "#{@merge_request.upvotes} up"
|
||||
.downvotes#downvotes= "#{@merge_request.downvotes} down"
|
||||
|
||||
.right
|
||||
.span3.votes.votes-block#votes
|
||||
.progress
|
||||
- up_percent = 100.0/@merge_request.votes_count*@merge_request.upvotes
|
||||
- down_percent = 100.0-up_percent
|
||||
.bar.bar-success{style: "width: #{up_percent}%;"}
|
||||
.bar.bar-danger{style: "width: #{down_percent}%;"}
|
||||
.upvotes= "#{@merge_request.upvotes} up"
|
||||
.downvotes= "#{@merge_request.downvotes} down"
|
||||
|
||||
.back_link
|
||||
= link_to project_merge_requests_path(@project) do
|
||||
|
|
Loading…
Reference in a new issue