Что делает:
Разделяет посты в ленте: включено по умолчанию
Возвращает текст наверх, картинки - вниз: включается в настройках
VK Old Style — раздельные посты by Desynci

Details
AuthorDesynci
LicenseNo License
Categoryvk.com
Created
Updated
Code size1.9 kB
Code checksum2011e271
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name VK Old Style
@namespace 1337
@version 7.1
@author idesync
@preprocessor stylus
@var checkbox swap-text-media "Поменять местами текст и картинки" 0
==/UserStyle== */
@-moz-document domain("vk.com") {
/* swap text & media */
if (swap-text-media) {
.PostContentContainer__contentContainer--vnF3X {
display: flex;
flex-direction: column;
:last-child {
order: -1;
}
}
}
/* remove chained feed wall */
/* remove shared bg */
.feed_wall--no-islands:not(.feed_notifications) {
background: none;
}
/* remove padding for the 1st post */
#page_wall_posts, #page_suggested_posts {
div:first-of-type {
margin-top: 0px !important;
}
}
/* setup unlinked posts */
.Post--redesign:not(.wall_module) {
background: var(--vkui--color_background_content) !important;
margin-top: 20px !important;
box-shadow: var(--page-block-shadow) !important;
}
/* public "all posts" button area */
.wall_module .page_block {
margin-bottom: 0px !important;
box-shadow: var(--page-block-shadow) !important;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}
.page_block_h2 {
background: var(--vkui--color_background_content) !important;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}
/* fix borders */
.feed_row > .post, .post_fixed {
border-radius: 12px !important;
}
.feed_wall--no-islands:not(.feed_notifications) {
box-shadow: none;
}
}