forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-23 21:23:59 -06:00
parent fa62cf9fea
commit 32a2ef8c71
4 changed files with 16 additions and 16 deletions

View File

@ -674,13 +674,13 @@ video {
ul {
margin-bottom: 0.75rem;
}
.comment-text > ul, .post-body > ul {
.comment-text > ul, .post-text > ul {
list-style-type: disc;
padding-left: 1rem;
padding-left: 1.25rem;
}
.comment-text > ol, .post-body > ol {
.comment-text > ol, .post-text > ol {
list-style-type: decimal;
padding-left: 1rem;
padding-left: 1.25rem;
}
strong {
font-weight: 700;
@ -1118,6 +1118,9 @@ video {
.h-full {
height: 100%;
}
.h-16 {
height: 4rem;
}
.h-14 {
height: 3.5rem;
}
@ -1127,9 +1130,6 @@ video {
.h-10 {
height: 2.5rem;
}
.h-16 {
height: 4rem;
}
.h-6 {
height: 1.5rem;
}
@ -1193,6 +1193,9 @@ video {
.w-full {
width: 100%;
}
.w-16 {
width: 4rem;
}
.w-14 {
width: 3.5rem;
}
@ -1211,9 +1214,6 @@ video {
.w-32 {
width: 8rem;
}
.w-16 {
width: 4rem;
}
.w-48 {
width: 12rem;
}

View File

@ -308,11 +308,11 @@
ul {
@apply mb-3
}
.comment-text > ul, .post-body > ul {
@apply list-disc pl-4
.comment-text > ul, .post-text > ul {
@apply list-disc pl-5
}
.comment-text > ol, .post-body > ol {
@apply list-decimal pl-4
.comment-text > ol, .post-text > ol {
@apply list-decimal pl-5
}
strong {
@apply font-bold

View File

@ -402,7 +402,7 @@
</a>
{% endif %}
{% endif %}
<div id="post-text" class="text-black dark:text-gray-200 {% if p.award_count("candycane") %}candycane{% endif %}">
<div id="post-text" class="post-text text-black dark:text-gray-200 {% if p.award_count("candycane") %}candycane{% endif %}">
{% if p.is_image %}
<a {% if not v or v.newtabexternal %}target="_blank"{% endif %} rel="nofollow noopener noreferrer" href="{{p.realurl(v)}}">
<img loading="lazy" src="{{p.realurl(v)}}" class="img-fluid" style="max-height:500px;" alt="Unable to load image">

View File

@ -248,7 +248,7 @@
</h5>
{% if p.realbody(v) and not p.over_18 %}
<div class="relative z-10 gradient-mask max-h-10 overflow-hidden pointer-events-none text-gray-500 break-words" style="word-break: break-word;" id="post-text-{{p.id}}">
<div class="post-text relative z-10 gradient-mask max-h-10 overflow-hidden pointer-events-none text-gray-500 break-words" style="word-break: break-word;" id="post-text-{{p.id}}">
{{p.realbody(v) | safe}}
</div>
{% endif %}