Добавлено получение навигационных категорий с иконками и обновление логики отображения иконок в компоненте BottomHead. Обновлены типы данных и стили для навигационных иконок. Оптимизирована загрузка групп для категорий в компоненте BottomHeadPartsIndex.

This commit is contained in:
Bivekich
2025-07-13 21:42:06 +03:00
parent 132e39b87e
commit ad5dcc03e3
6 changed files with 406 additions and 136 deletions

View File

@ -377,4 +377,23 @@ button,
.tooltip-title {
font-size: 15px;
}
}
/* Стили для навигационных иконок */
.navigation-icon-img {
display: block !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
z-index: 9999 !important;
max-width: 21px !important;
max-height: 20px !important;
width: 21px !important;
height: 20px !important;
object-fit: contain !important;
opacity: 1 !important;
visibility: visible !important;
border: 2px solid red !important; /* Временно для отладки */
background-color: yellow !important; /* Временно для отладки */
pointer-events: none !important; /* Чтобы не блокировать клики */
}