October 4, 2019

Коды для Extra.Less (Create by ArtemFlaut)

Убираем отображение названия форума с главной страницы:

Код:

body[data-template="forum_list"] .p-title-value {
   display: none; /* Script by ArtemFlaut */
}

Выравниваем блоки по правому краю, на главной странице:

Код:

body[data-template="forum_list"] .p-title {
   justify-content: flex-end; /* Script by ArtemFlaut */
}

Установка полоски над категорией:

Код:

.block--category {
    .block-header {
        border-top: 3px #00b3ff solid;
        padding-top: 10px;
    }
}