Wall: Compact avatars are now works with non-default settings; Comments in the feed

This commit is contained in:
veselcraft 2021-11-28 14:53:33 +03:00
parent 03dee6b1f0
commit 14b3e13d95
No known key found for this signature in database
GPG key ID: AED66BC1AC628A4E
4 changed files with 13 additions and 2 deletions

View file

@ -23,7 +23,7 @@
{foreach $posts as $post}
<a name="postGarter={$post->getId()}"></a>
{include "../components/post.xml", post => $post, onWallOf => true}
{include "../components/post.xml", post => $post, onWallOf => true, commentSection => true}
{/foreach}
{include "../components/paginator.xml", conf => $paginatorConf}
<br/>

View file

@ -7,7 +7,8 @@
<td width="30" valign="top">
<img
src="{$author->getAvatarURL()}"
width="30" />
width="30"
class="cCompactAvatars" />
</td>
<td width="345" valign="top">
<div class="post-author">

View file

@ -34,3 +34,8 @@ div.content > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth
height: 42px;
object-fit: cover;
}
.cCompactAvatars {
width: 30px !important;
height: 30px !important;
}

View file

@ -61,3 +61,8 @@ div.ovk-video > div > img
{
border-radius: 2px;
}
.cCompactAvatars {
width: 30px !important;
height: 30px !important;
}