/
DevDenzo
/
DigitalStore
Обзор
Документация
Войти
/
DevDenzo
/
DigitalStore
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Cart/OrderSelectAll.css
38 строк
794 B
Denis Sklyarskij
Финальный коммит
29 ноя 2025, 18:05
29 ноя 2025, 18:05
c8d7804
Код
Авторство
О чём код?
.orders-selection { display: flex; align-items: center; gap: 12px; padding: 6px 12px; } .orders-selection__toggle { /* Скрываем оригинальный чекбокс */ opacity: 0; width: 15px; height: 15px; position: absolute; cursor: pointer; } .orders-selection__label { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 8px; background-color: #e0e0e0; color: transparent; cursor: pointer; } /* Состояние отмеченного чекбокса */ .orders-selection__toggle:checked + .orders-selection__label { background-color: #cc4c4c; color: #ffffff; } .orders-selection__label-text { font-size: 16px; color: #212529; }