remove the bigger class

pull/66/head
Aevann1 2022-12-14 19:06:59 +02:00
parent 0c94ec2067
commit b176bc79ac
3 changed files with 2 additions and 5 deletions

View File

@ -6477,9 +6477,6 @@ div.markdown {
max-height:100%!important;
margin:0!important;
}
.bigger {
height:50vh;
}
.user-signature video {
max-height: min(var(--signature-max-height),50vh) !important;

View File

@ -142,7 +142,7 @@
{% elif p.is_video %}
<div class="row no-gutters mb-4">
<div class="col">
<p class="resizable bigger">
<p class="resizable">
<video {% if p.thumburl %}poster="{{p.thumb_url}}"{% endif %} controls preload="none" src="{{p.realurl(v)}}"></video>
</p>
</div>

View File

@ -243,7 +243,7 @@
</div>
{% elif p.is_video %}
<div id="video-{{p.id}}" class="ml-5 {% if p.over_18 or not ((v and v.cardview) or (not v and CARD_VIEW)) %}d-none{% endif %} mt-4">
<p class="resizable bigger">
<p class="resizable">
<video {% if p.thumburl %}poster="{{p.thumb_url}}"{% endif %} id="video2-{{p.id}}" controls preload="none" src="{{p.realurl(v)}}"></video>
</p>
</div>