Issue #1965650 by Pancho, mradcliffe, manningpete, rabbit_media, DeeLay: Fixed Comment rendering broken: comment body rendered outside of the bubble.
parent
bb7404d3d2
commit
75644c155f
|
@ -859,6 +859,10 @@ ul.links {
|
||||||
border-right: 1px solid #fff4f4;
|
border-right: 1px solid #fff4f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.comment-footer {
|
||||||
|
display: table-row;
|
||||||
|
}
|
||||||
|
|
||||||
/* ------------------ Sidebar ----------------- */
|
/* ------------------ Sidebar ----------------- */
|
||||||
.sidebar .section {
|
.sidebar .section {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
|
|
|
@ -66,7 +66,6 @@
|
||||||
<article class="{{ attributes.class }} clearfix"{{ attributes }} role="article">
|
<article class="{{ attributes.class }} clearfix"{{ attributes }} role="article">
|
||||||
|
|
||||||
<header class="comment-header">
|
<header class="comment-header">
|
||||||
|
|
||||||
<div class="attribution">
|
<div class="attribution">
|
||||||
{{ user_picture }}
|
{{ user_picture }}
|
||||||
|
|
||||||
|
@ -92,38 +91,36 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- /.attribution -->
|
</div> <!-- /.attribution -->
|
||||||
|
|
||||||
<div class="comment-text">
|
|
||||||
<div class="comment-arrow"></div>
|
|
||||||
|
|
||||||
{% if new %}
|
|
||||||
<span class="new">{{ new }}</span>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{{ title_prefix }}
|
|
||||||
<h3{{ title_attributes }}>{{ title }}</h3>
|
|
||||||
{{ title_suffix }}
|
|
||||||
</div> <!-- /.comment-text -->
|
|
||||||
|
|
||||||
</header> <!-- /.comment-header -->
|
</header> <!-- /.comment-header -->
|
||||||
|
|
||||||
<div{{ content_attributes }}>
|
<div class="comment-text">
|
||||||
{# We hide the links now so that we can render them later. #}
|
<div class="comment-arrow"></div>
|
||||||
{% hide(content.links) %}
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
</div> <!-- /.content -->
|
{% if new %}
|
||||||
|
<span class="new">{{ new }}</span>
|
||||||
<footer class="comment-footer">
|
|
||||||
{% if signature %}
|
|
||||||
<div class="user-signature clearfix">
|
|
||||||
{{ signature }}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<nav>
|
{{ title_prefix }}
|
||||||
{{ content.links }}
|
<h3{{ title_attributes }}>{{ title }}</h3>
|
||||||
</nav>
|
{{ title_suffix }}
|
||||||
</footer> <!-- /.comment-footer -->
|
|
||||||
|
<div{{ content_attributes }}>
|
||||||
|
{# We hide the links now so that we can render them later. #}
|
||||||
|
{% hide(content.links) %}
|
||||||
|
{{ content }}
|
||||||
|
</div> <!-- /.content -->
|
||||||
|
|
||||||
|
<footer class="comment-footer">
|
||||||
|
{% if signature %}
|
||||||
|
<div class="user-signature clearfix">
|
||||||
|
{{ signature }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<nav>
|
||||||
|
{{ content.links }}
|
||||||
|
</nav>
|
||||||
|
</footer> <!-- /.comment-footer -->
|
||||||
|
</div> <!-- /.comment-text -->
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
Loading…
Reference in New Issue