Groups: Slightly improve the appearance of the list of topics on the group page

This commit is contained in:
Maxim Leshchenko 2021-12-15 01:20:53 +02:00
parent 2f8c8d9035
commit 066ebc1c6f
No known key found for this signature in database
GPG key ID: BB9C44A8733FBEEE
2 changed files with 6 additions and 1 deletions

View file

@ -215,7 +215,7 @@
</div> </div>
</div> </div>
<div> <div>
<div n:foreach="$topics as $topic" style="border-bottom: #e6e6e6 solid 1px; padding: 2px;"> <div n:foreach="$topics as $topic" class="topic-list-item">
<b><a href="/topic{$topic->getPrettyId()}">{$topic->getTitle()}</a></b><br> <b><a href="/topic{$topic->getPrettyId()}">{$topic->getTitle()}</a></b><br>
<span class="nobold">{tr("updated_at", $topic->getUpdateTime())}</span> <span class="nobold">{tr("updated_at", $topic->getUpdateTime())}</span>
</div> </div>

View file

@ -1682,3 +1682,8 @@ body.scrolled .toTop:hover {
background: url("/assets/packages/static/openvk/img/pin.png") no-repeat 0px 0px; background: url("/assets/packages/static/openvk/img/pin.png") no-repeat 0px 0px;
vertical-align: middle; vertical-align: middle;
} }
.topic-list-item {
border-bottom: #e6e6e6 solid 1px;
padding: 4px;
}