Turns out applying more generally does break things
This commit is contained in:
parent
9f3d9b4220
commit
81e8cb3679
3 changed files with 4 additions and 4 deletions
|
@ -7299,7 +7299,7 @@ iframe {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto; }
|
margin-right: auto; }
|
||||||
|
|
||||||
.flow.content {
|
.flow.content.comment-form {
|
||||||
width: 100%; }
|
width: 100%; }
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
|
|
@ -111,8 +111,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adding this so the comment box at the bottom isn't unnaturally small.
|
// Adding this so the comment box at the bottom isn't unnaturally small.
|
||||||
// This perhaps should be more precisely targeted, or more generally.
|
// Applying more generally breaks node content layout.
|
||||||
|
|
||||||
.flow.content {
|
.flow.content.comment-form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
|
|
||||||
{% if comment_form %}
|
{% if comment_form %}
|
||||||
<div class="media media-comment">
|
<div class="media media-comment">
|
||||||
<div class="flow content">
|
<div class="flow content comment-form">
|
||||||
<div class="flow_middle">
|
<div class="flow_middle">
|
||||||
<h3 class="subtitle" id="comment-form">{{ 'Add new comment'|t }}</h3>
|
<h3 class="subtitle" id="comment-form">{{ 'Add new comment'|t }}</h3>
|
||||||
{{ comment_form }}
|
{{ comment_form }}
|
||||||
|
|
Loading…
Reference in a new issue