Fixed css
CSS for comments wasn't included in post-view.phtml. This manifested when user posted a comment thruogh it (AJAX requests don't append CSS from AJAXed pages, so added it in parent view).
This commit is contained in:
parent
f01f55cc8b
commit
91b0432067
1 changed files with 4 additions and 0 deletions
|
@ -325,6 +325,10 @@ LayoutHelper::addScript('../lib/tagit/jquery.tagit.js');
|
||||||
</div>
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
LayoutHelper::addStylesheet('comment-list.css');
|
||||||
|
LayoutHelper::addStylesheet('comment-small.css');
|
||||||
|
?>
|
||||||
<div class="comments-wrapper">
|
<div class="comments-wrapper">
|
||||||
<?php if (!empty($this->context->transport->post->getComments())): ?>
|
<?php if (!empty($this->context->transport->post->getComments())): ?>
|
||||||
<div class="comments unit">
|
<div class="comments unit">
|
||||||
|
|
Loading…
Reference in a new issue