TEMP: Use <pre> for comments in admin area
Also update admin.css so that lines get wrappedFREEZE-blogpost-2021-01-19
parent
3e89147ffa
commit
86e0cb02b3
|
@ -113,6 +113,9 @@ a {
|
|||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.isso-comment pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.isso-comment-footer a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
|
@ -124,7 +124,7 @@
|
|||
{% if comment.mode == 4 %}
|
||||
<strong>HIDDEN</strong>. Original text: <br />
|
||||
{% endif %}
|
||||
<div id="isso-text-{{comment.id}}">{{comment.text}}</div>
|
||||
<div id="isso-text-{{comment.id}}"><pre>{{comment.text}}</pre></div>
|
||||
</div>
|
||||
<div class='isso-comment-footer'>
|
||||
{% if conf.votes and comment.likes - comment.dislikes != 0 %}
|
||||
|
|
Loading…
Reference in New Issue