mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-01 20:29:17 +01:00
37 lines
908 B
CSS
37 lines
908 B
CSS
|
|
.downloads-widget-table {
|
||
|
|
/*Set Header static and overflow body instead*/
|
||
|
|
display: flex;
|
||
|
|
height: 100%;
|
||
|
|
flex-direction: column;
|
||
|
|
.mantine-Table-tbody {
|
||
|
|
overflow-y: auto;
|
||
|
|
flex: 1;
|
||
|
|
scrollbar-width: 0;
|
||
|
|
}
|
||
|
|
/*Hide scrollbar until I can apply an overlay scrollbar instead*/
|
||
|
|
.mantine-Table-tbody::-webkit-scrollbar {
|
||
|
|
width: 0;
|
||
|
|
}
|
||
|
|
/*Properly size header*/
|
||
|
|
.mrt-table-head-cell-labels {
|
||
|
|
min-height: var(--ratioWidth);
|
||
|
|
gap: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
/*Properly size controls*/
|
||
|
|
.mrt-grab-handle-button {
|
||
|
|
margin: unset;
|
||
|
|
width: var(--dragButtonSize);
|
||
|
|
min-width: var(--dragButtonSize);
|
||
|
|
height: var(--dragButtonSize);
|
||
|
|
min-height: var(--dragButtonSize);
|
||
|
|
}
|
||
|
|
.mrt-table-head-sort-button {
|
||
|
|
margin: unset;
|
||
|
|
width: var(--sortButtonSize);
|
||
|
|
min-width: var(--sortButtonSize);
|
||
|
|
height: var(--sortButtonSize);
|
||
|
|
min-height: var(--sortButtonSize);
|
||
|
|
}
|
||
|
|
}
|