fix: blacklist paddings

This commit is contained in:
mrilyew 2025-05-24 16:04:08 +03:00 committed by Alexander Minkin
parent 7f33389277
commit 6b583a2870

View file

@ -3656,7 +3656,7 @@ hr {
.entity_vertical_list { .entity_vertical_list {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 3px; gap: 10px;
height: 197px; height: 197px;
overflow-y: auto; overflow-y: auto;
} }
@ -3664,6 +3664,7 @@ hr {
.entity_vertical_list.scroll_container { .entity_vertical_list.scroll_container {
height: unset; height: unset;
overflow-y: unset; overflow-y: unset;
padding: 5px;
} }
.entity_vertical_list .entity_vertical_list_item { .entity_vertical_list .entity_vertical_list_item {
@ -3681,12 +3682,16 @@ hr {
} }
.entity_vertical_list.m_mini .entity_vertical_list_item .first_column { .entity_vertical_list.m_mini .entity_vertical_list_item .first_column {
gap: 10px; gap: 13px;
}
.entity_vertical_list.m_mini .entity_vertical_list_item:hover .first_column a {
text-decoration: underline;
} }
.entity_vertical_list.m_mini .entity_vertical_list_item .first_column .avatar img { .entity_vertical_list.m_mini .entity_vertical_list_item .first_column .avatar img {
width: 30px; width: 40px;
height: 30px; height: 40px;
} }
.entity_vertical_list .entity_vertical_list_item .avatar { .entity_vertical_list .entity_vertical_list_item .avatar {