Compare commits

..

3 commits

Author SHA1 Message Date
mrilyew
da6ce237f4 fix(wall): ctrl+enter didn't saved attachments 2024-11-22 13:12:59 +03:00
mrilyew
ba2d929183 fix(videos list): show video window on click 2024-11-22 11:59:37 +03:00
mrilyew
0596452ef4 fix(square avatar): make focus on top of picture 2024-11-22 11:49:35 +03:00
5 changed files with 13 additions and 6 deletions

View file

@ -33,7 +33,7 @@
{/block}
{block preview}
<div class="video-preview" data-id="{$x->getId()}">
<div class="video-preview" id="videoOpen" data-id="{$x->getPrettyId()}">
<img src="{$x->getThumbnailURL()}"
alt="{$x->getName()}"
style="max-width: 170px; max-height: 127px; margin: auto;" />
@ -41,7 +41,7 @@
{/block}
{block name}
<span data-id="{$x->getId()}" style="color:unset;">{$x->getName()}</span>
<span id="videoOpen" data-id="{$x->getPrettyId()}" style="color:unset;">{$x->getName()}</span>
{/block}
{block description}
@ -51,7 +51,7 @@
<span style="color: grey;">{_video_uploaded} {$x->getPublicationTime()}</span><br/>
<span style="color: grey;">{_video_updated} {$x->getEditTime() ?? $x->getPublicationTime()}</span>
<p>
<a href="/video{$x->getPrettyId()}" data-id="{$x->getId()}">{_view_video}</a>
<a href="/video{$x->getPrettyId()}" data-id="{$x->getPrettyId()}">{_view_video}</a>
{if $x->getCommentsCount() > 0}| <a href="/video{$x->getPrettyId()}#comments">{_comments} ({$x->getCommentsCount()})</a>{/if}
</p>
{/block}

View file

@ -29,7 +29,7 @@
<span style="color: grey;">{_video_uploaded} {$video->getPublicationTime()}</span><br/>
<p>
<a href="/video{$video->getPrettyId()}" id='videoOpen' data-id="{$video->getPrettyId()}">{_view_video}</a>
<a href="/video{$video->getPrettyId()}" data-id="{$video->getPrettyId()}">{_view_video}</a>
{if $video->getCommentsCount() > 0}| <a href="/video{$video->getPrettyId()}#comments">{_comments} ({$video->getCommentsCount()})</a>{/if}
</p>
{/ifset}

View file

@ -4,6 +4,7 @@ table.User > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > a:nth-chil
width: 50px;
height: 50px;
object-fit: cover;
object-position: top;
}
.post > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > a:nth-child(1) > img:nth-child(1)
@ -11,6 +12,7 @@ table.User > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > a:nth-chil
width: 50px;
height: 50px;
object-fit: cover;
object-position: top;
}
div.content > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > a:nth-child(1) > img:nth-child(1)
@ -18,6 +20,7 @@ div.content > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth
width: 75px;
height: 75px;
object-fit: cover;
object-position: top;
}
.crp-entry--image > img
@ -25,6 +28,7 @@ div.content > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth
width: 48px;
height: 48px;
object-fit: cover;
object-position: top;
}
.crp-entry--message---av > img,
@ -33,16 +37,19 @@ div.content > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth
width: 42px;
height: 42px;
object-fit: cover;
object-position: top;
}
.cCompactAvatars {
width: 30px !important;
height: 30px !important;
object-fit: cover;
object-position: top;
}
.profile_thumb > a > img {
width: 50px;
height: 50px;
object-fit: cover;
object-position: top;
}

View file

@ -3143,7 +3143,7 @@ body.article .floating_sidebar, body.article .page_content {
position: absolute;
z-index: 128;
width: 100%;
height: 100vh;
min-height: 100vh;
padding: 20px;
box-sizing: border-box;
background-color: #fff;

View file

@ -461,7 +461,7 @@ u(document).on('click', '#videoOpen', (e) => {
u(document).on("keydown", "#write > form", function(event) {
if(event.ctrlKey && event.keyCode === 13)
this.submit();
u(event.target).closest('form').find(`input[type='submit']`).nodes[0].click()
});
u(document).on('keydown', '.edit_menu #write', (e) => {