1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-14 23:08:18 +03:00

Фикс ссылки на комментарии, фикс превью комментариев

This commit is contained in:
Denis Shakhov 2012-07-16 09:13:24 +07:00
parent 7ba7b896a9
commit 4a34aac449
3 changed files with 10 additions and 9 deletions

View file

@ -14,7 +14,7 @@
.comment-wrapper .comment-wrapper { padding-left: 40px; }
.comment-preview { padding: 5px 10px 6px; margin-bottom: 10px; background: #fafafa; border: 1px solid #eee; border-radius: 3px; }
.comment-preview { font-size: 13px; line-height: 18px; }
.comment-preview { font-size: 13px; line-height: 1.6em; }
/* Комментарий */

View file

@ -57,11 +57,12 @@
.topic .topic-footer .topic-info li.topic-info-share.active i,
.topic .topic-footer .topic-info li.topic-info-share:hover i { background-position: -12px -51px; }
.topic .topic-footer .topic-info li.topic-info-comments a { color: #727fa0; text-decoration: underline; float: left; }
.topic .topic-footer .topic-info li.topic-info-comments a:hover { color: #f00; }
.topic .topic-footer .topic-info li.topic-info-comments a.new { color: #000; }
.topic .topic-footer .topic-info li.topic-info-comments span { color: #27a736; margin-left: 5px; }
.topic .topic-footer .topic-info li.topic-info-comments i { float: left; margin-right: 7px; }
.topic .topic-footer .topic-info li.topic-info-comments a { color: #727fa0; float: left; }
.topic .topic-footer .topic-info li.topic-info-comments a:hover { color: #f00; }
.topic .topic-footer .topic-info li.topic-info-comments a.new { color: #000; }
.topic .topic-footer .topic-info li.topic-info-comments span { text-decoration: underline; }
.topic .topic-footer .topic-info li.topic-info-comments span.count { color: #27a736; text-decoration: none; }
.topic .topic-footer .topic-info li.topic-info-comments i { float: left; margin-right: 7px; }
.topic .topic-footer .topic-info li.topic-info-favourite { padding: 6px; color: #828a93; border-radius: 4px; cursor: pointer; }
.topic .topic-footer .topic-info li.topic-info-favourite i { float: left; margin-right: 3px; }

View file

@ -62,9 +62,9 @@
{if $oTopic->getCountCommentNew()}
<a href="{$oTopic->getUrl()}#comments" title="{$aLang.topic_comment_read}" class="new">
<i class="icon-synio-comments-green-filled"></i>
{$oTopic->getCountComment()}
<span>{$oTopic->getCountComment()}</span>
<span class="count">+{$oTopic->getCountCommentNew()}</span>
</a>
<span>+{$oTopic->getCountCommentNew()}</span>
{else}
<a href="{$oTopic->getUrl()}#comments" title="{$aLang.topic_comment_read}">
{if $oTopic->getCountComment()}
@ -73,7 +73,7 @@
<i class="icon-synio-comments-blue"></i>
{/if}
{$oTopic->getCountComment()}
<span>{$oTopic->getCountComment()}</span>
</a>
{/if}
</li>