/
m.makarov
/
FastAPI
Обзор
Документация
Войти
/
m.makarov
/
FastAPI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
frontend/src/assets/styles/category-tree.css
108 строк
2 KB
Maks
Авторизация, стили для фронта
23 дек 2025, 13:58
23 дек 2025, 13:58
b808b1c
Код
Авторство
О чём код?
/* /home/ubuntu/fastapi/FastAPI/frontend/src/assets/styles/category-tree.css */ .category-tree { list-style: none; padding-left: 0; margin: 0; } .category-item { margin: 2px 0; } .category-main { display: flex; align-items: center; padding: 10px 12px; border-radius: 8px; cursor: pointer; background: #f8f9fa; border: 1px solid #e9ecef; margin: 4px 0; position: relative; transition: background-color 0.2s ease; } .category-main:hover { background: #e9ecef; } .category-main.active { background: #4361ee; border-color: #4361ee; color: white; } .category-main.active .category-name { color: white; } .category-main.active .category-count { background: rgba(255, 255, 255, 0.2); color: white; } .category-icon { font-size: 1.1em; margin-right: 10px; min-width: 20px; display: flex; align-items: center; justify-content: center; } .category-name { flex: 1; font-size: 0.9rem; font-weight: 500; color: #495057; } .category-main.active .category-name { color: white; } .category-count { background: #dee2e6; color: #495057; font-size: 0.7rem; padding: 2px 6px; border-radius: 10px; font-weight: 500; margin-left: 8px; } .category-children-wrapper { margin-left: 16px; padding-left: 12px; border-left: 1px solid #dee2e6; } /* Стили для разных уровней вложенности */ .category-item.level-1 .category-main { margin-left: 8px; } .category-item.level-2 .category-main { margin-left: 16px; } .category-item.level-3 .category-main { margin-left: 24px; } /* Адаптивность */ @media (max-width: 768px) { .category-main { padding: 8px 10px; } .category-children-wrapper { margin-left: 12px; padding-left: 8px; } .category-name { font-size: 0.85rem; } }