/
guselnikov
/
inst
Обзор
Документация
Войти
/
guselnikov
/
inst
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
admin/src/components/ui/Textarea.module.css
72 строки
1 KB
Viktor Guselnikov
first_commit
07 июл 2026, 11:54
07 июл 2026, 11:54
098126a
Код
Авторство
О чём код?
.field { display: flex; flex-direction: column; gap: 6px; } .label { font-size: 12px; font-weight: 500; letter-spacing: 0.02em; color: var(--text-muted); text-transform: uppercase; } .textarea { width: 100%; min-height: 120px; padding: 14px 16px; border: none; border-radius: var(--radius-sm); background: var(--bg-muted); box-shadow: var(--shadow-inset); color: var(--text-primary); font-size: 14px; line-height: 1.6; resize: vertical; transition: background var(--transition), box-shadow var(--transition); } .textarea::placeholder { color: var(--text-faint); } .textarea:hover { background: var(--bg-elevated); } .textarea:focus { outline: none; background: var(--bg-elevated); box-shadow: var(--shadow-inset), 0 0 0 1px var(--border-focus); } .footer { display: flex; justify-content: flex-end; } .counter { font-size: 11px; font-family: var(--font-mono); color: var(--text-faint); } .counterWarn { color: var(--warning); } .mono { font-family: var(--font-mono); font-size: 12px; line-height: 1.5; } .textarea:disabled { opacity: 0.45; cursor: not-allowed; }