/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
web/libs/datamanager/src/components/Common/Resizer/Resizer.module.css
50 строк
942 B
Raul Martin
refactor: ECHO-448: Biome - enable format (#9625)
17 мар 2026, 18:27
Не верифицирован
17 мар 2026, 18:27
567cb96
Код
Авторство
О чём код?
.root { --handle-size: 2px; --handle-size-hover: 4px; --handle-interactive-size: 8px; & button { &:focus { outline: none; box-shadow: none; } } .handle { top: var(--spacing-tight); bottom: var(--spacing-tight); position: absolute; right: 0; cursor: ew-resize; z-index: 100; width: var(--handle-interactive-size); &::before { width: var(--handle-size); height: 100%; background: var(--color-neutral-border); content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); transition: width 150ms ease-out, background-color 150ms ease-out; } &:hover::before, &.handleResizing::before { width: var(--handle-size-hover); background-color: var(--color-primary-border-subtle); } } } .quickview { & > .handle { top: 0; bottom: 0; right: -4px; } }