Merge pull request #329 from BenLubar/replies-to-post

UI for replies-to-post
main
Barış Soner Uşaklı 8 years ago committed by GitHub
commit cdb0896a6c

@ -138,6 +138,10 @@
font-size: 10px; font-size: 10px;
} }
[component="post/reply-count"] {
margin-left: 61px;
}
.stats { .stats {
margin: 0px 10px 0px 10px; margin: 0px 10px 0px 10px;
float: left; float: left;
@ -255,6 +259,10 @@
.user-icon-style(23px, 1.3rem, 50%); .user-icon-style(23px, 1.3rem, 50%);
} }
} }
[component="post/reply-count"] {
margin-left: 0;
}
} }
} }
@ -468,4 +476,4 @@
opacity: 0; opacity: 0;
} }
} }
} }

@ -82,6 +82,15 @@
<!-- IMPORT partials/topic/post-menu.tpl --> <!-- IMPORT partials/topic/post-menu.tpl -->
</small> </small>
<!-- IF posts.replies -->
<a component="post/reply-count" href="#" class="no-select">
<i class="fa fa-plus" component="post/replies/open"></i>
<i class="fa fa-minus hidden" component="post/replies/close"></i>
<i class="fa fa-spin fa-spinner hidden" component="post/replies/loading"></i>
[[topic:replies_to_this_post, {posts.replies}]]
</a>
<!-- ENDIF posts.replies -->
</div> </div>
<hr /> <hr />

Loading…
Cancel
Save