mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Wall: Compact avatars are now works with non-default settings; Comments in the feed
This commit is contained in:
parent
03dee6b1f0
commit
14b3e13d95
4 changed files with 13 additions and 2 deletions
|
@ -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/>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -61,3 +61,8 @@ div.ovk-video > div > img
|
|||
{
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.cCompactAvatars {
|
||||
width: 30px !important;
|
||||
height: 30px !important;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue