Update display of merge requests and issues to also show downvotes

This commit is contained in:
Riyad Preukschas 2012-09-08 03:30:41 +02:00
parent 7b0c7ae52c
commit 1271b4ce66
5 changed files with 27 additions and 9 deletions

View file

@ -406,13 +406,23 @@ p.time {
}
}
.upvotes {
.votes {
font-size: 14px;
font-weight: bold;
color: #468847;
text-align: right;
padding: 4px;
margin: 2px;
padding: 4px 0;
margin: 2px 0;
.upvotes {
display: inline-block;
color: #468847;
padding: 0 4px;
margin: 0 2px;
}
.downvotes {
display: inline-block;
color: #B94A48;
padding: 0 4px;
margin: 0 2px;
}
}
/* Fix for readme code (stopped it from being yellow) */