Add more obvious notifier that the post is an OP

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2023-08-13 22:00:58 -07:00
parent 44e28c2e44
commit b036a51cfb
2 changed files with 10 additions and 1 deletions

View File

@@ -42,7 +42,9 @@
<tr class="constructed-post"> <tr class="constructed-post">
<td align="left"> <td align="left">
<div class="post-container"> <div class="post-container">
<div class="post-left{% if post['op'] %}-op{%endif %}"></div> <div class="post-left{% if post['op'] %}-op{%endif %}">
{% if post['op'] %}<div class="post-left-text">OP</div>{%endif %}
</div>
<div class="post post-right reply{% if post['nsfw'] %} nws{% else %} ws{% endif %}"> <div class="post post-right reply{% if post['nsfw'] %} nws{% else %} ws{% endif %}">
<div class="post-info"> <div class="post-info">
<input type="checkbox" disabled> <input type="checkbox" disabled>

View File

@@ -59,6 +59,13 @@ header {
background-color: #f00; background-color: #f00;
} }
.post-left-text {
transform: translate(0%, 50%) rotate(-90deg);
padding: 1px;
font-weight: bold;
}
.post-right { .post-right {
display: table-cell; display: table-cell;
padding-left: 10px; padding-left: 10px;