/
dedaMazai
/
ResizeTable
Обзор
Документация
Войти
/
dedaMazai
/
ResizeTable
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/TableFlex/Table.module.scss
51 строка
762 B
Andrei Chipizubov
fix
08 дек 2023, 14:03
08 дек 2023, 14:03
98a8938
Код
Авторство
О чём код?
.tableWrapper { overflow: hidden; } .table { display: flex; flex-direction: column; border: solid 1px #000; width: 100%; box-sizing: border-box; } // ROW .rowHeader, .row { display: flex; flex-direction: row; border-bottom: solid 1px #000; &:hover { background-color: #70707024; } } .row.rowLast { border-bottom: none; } // CELL .cellHeader, .cell { border-right: solid 1px #000; padding: 5px; overflow: hidden; text-overflow: ellipsis; box-sizing: border-box; flex-shrink: 0; cursor: pointer; input { width: -webkit-fill-available; height: -webkit-fill-available; height: auto; cursor: pointer; } } .cellHeader.lastHeaderCell, .cell.lastCell { border-right: none; min-width: inherit; }