This commit is contained in:
Piotr Mitros
2012-02-08 13:01:43 -05:00
2 changed files with 19 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ div.answer-block {
}
div.answered-by-owner {
color: darken($mit-red, 10%);
color: darken($mit-red, 20%);
}
}

View File

@@ -213,14 +213,29 @@ div.question-header {
}
div.comment-votes {
@include transform(rotate(-90deg));
width: 16px;
a.upvote {
background: url(../images/askbot/comment-vote-up.png) no-repeat 2px;
cursor: pointer;
font-size: 25px;
text-decoration: none;
color: green;
display: block;
margin-bottom: 6px;
margin-top: 5px;
overflow: hidden;
text-decoration: none;
text-indent: -9999px;
width: 20px;
}
a.upvoted {
@include border-radius(3px);
background: #D1E3A8;
color: green;
font-weight: bold;
margin-top: 10px;
padding: 2px;
text-indent: 0px;
}
}