/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
web/libs/datamanager/src/components/Common/TaskSourceViewer/TaskSourceViewer.module.css
47 строк
883 B
Raul Martin
feat: Migrate SCSS to plain CSS with PostCSS, replace Stylelint with Biome (#9584)
12 мар 2026, 20:57
Не верифицирован
12 мар 2026, 20:57
3f31128
Код
Авторство
О чём код?
.taskSourceView { display: flex; flex-direction: column; gap: var(--spacing-base); width: 100%; /* Fixed height prevents modal from resizing when switching Code/Interactive views */ /* that leads to accidental clicks outside and unexpecteddd modal closing */ height: 600px; } .viewContent { flex: 1; min-height: 0; } .skeletonContainer { display: flex; flex-direction: column; gap: var(--spacing-tight); padding: var(--spacing-loose); height: 100%; background: var(--color-neutral-surface-inset); border-radius: var(--corner-radius-small); border: 1px solid var(--color-neutral-border); } .skeletonLine { height: 14px; border-radius: 4px; background: var(--color-neutral-border); animation: shimmer 1.3s ease infinite; } @keyframes shimmer { 0% { opacity: 0.4; } 50% { opacity: 0.7; } 100% { opacity: 0.4; } }