/
task-tracker
/
TaskTracker.UI
Обзор
Документация
Войти
/
task-tracker
/
TaskTracker.UI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/styles/_div-table.scss
63 строки
1 KB
Ametusik
#1
: Архитектура проекта
28 апр 2025, 12:44
28 апр 2025, 12:44
f47df22
Код
Авторство
О чём код?
@use "colors"; .cell { padding: 0 8px; } .cell-title { max-width: 100%; text-overflow: ellipsis; overflow: hidden; font-size: 12px; line-height: normal; text-wrap: nowrap; } .trow-title { max-width: 100%; text-overflow: ellipsis; overflow: hidden; font-size: 14px; font-weight: 400; line-height: normal; text-wrap: unset; white-space: nowrap; color: colors.$default-text-color; } .hovered-action { box-sizing: border-box; .hovered-icon { visibility: hidden; margin-left: auto; width: 24px; height: 100%; text-align: center; font-weight: bold; cursor: pointer; justify-content: center; display: flex; box-sizing: border-box; flex-direction: column; &:hover { background-color: colors.$background-color-hover-hard; } } &:hover { .hovered-icon { visibility: visible; } .hovered-label { max-width: calc(100% - 30px) !important; color: colors.$link-text-color; text-decoration: underline; cursor: pointer; } } }