Commit 6cdd3a7e by Tom Giannattasio

started thread styles

parent 43a70d89
......@@ -187,15 +187,22 @@ $tag_text_color: #5b614f;
//VOTES
.discussion-votes {
float: left;
height: flex-grid(3);
margin: 1% 2%;
width: flex-grid(1);
text-align: center;
// height: flex-grid(3);
// margin: 1% 2%;
.discussion-vote-count {
@include discussion-font;
font-size: $comment_body_size;
}
.discussion-votes-point {
font-size: 1em;
font-weight: bold;
}
a.discussion-vote {
color: black;
display: block;
......
......@@ -111,8 +111,8 @@
<%def name="render_vote(content)">
<div class="discussion-votes">
${render_link("discussion-vote discussion-vote-up", "&#x2C4;")}
${render_link("discussion-vote discussion-vote-up", "&#9650;")}
<div class="discussion-votes-point">${content['votes']['point']}</div>
${render_link("discussion-vote discussion-vote-down", "&#x2C5;")}
${render_link("discussion-vote discussion-vote-down", "&#9660;")}
</div>
</%def>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment