Issue #1965650 by Pancho, mradcliffe, manningpete, rabbit_media, DeeLay: Fixed Comment rendering broken: comment body rendered outside of the bubble.

8.0.x
webchick 2013-08-18 00:17:51 -07:00
parent bb7404d3d2
commit 75644c155f
2 changed files with 30 additions and 29 deletions

View File

@ -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;

View File

@ -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,6 +91,7 @@
{% endif %} {% endif %}
</div> </div>
</div> <!-- /.attribution --> </div> <!-- /.attribution -->
</header> <!-- /.comment-header -->
<div class="comment-text"> <div class="comment-text">
<div class="comment-arrow"></div> <div class="comment-arrow"></div>
@ -103,15 +103,11 @@
{{ title_prefix }} {{ title_prefix }}
<h3{{ title_attributes }}>{{ title }}</h3> <h3{{ title_attributes }}>{{ title }}</h3>
{{ title_suffix }} {{ title_suffix }}
</div> <!-- /.comment-text -->
</header> <!-- /.comment-header -->
<div{{ content_attributes }}> <div{{ content_attributes }}>
{# We hide the links now so that we can render them later. #} {# We hide the links now so that we can render them later. #}
{% hide(content.links) %} {% hide(content.links) %}
{{ content }} {{ content }}
</div> <!-- /.content --> </div> <!-- /.content -->
<footer class="comment-footer"> <footer class="comment-footer">
@ -125,5 +121,6 @@
{{ content.links }} {{ content.links }}
</nav> </nav>
</footer> <!-- /.comment-footer --> </footer> <!-- /.comment-footer -->
</div> <!-- /.comment-text -->
</article> </article>