1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/list/table-theme.module.scss
Alex Andreev 0629ff3123 Make separate VirtualTableHeader
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2022-08-23 16:10:33 +03:00

49 lines
743 B
SCSS

.tableTheme {
height: 708px;
overflow: auto;
table {
table-layout: fixed;
width: 100%;
}
thead {
border-bottom: thin solid var(--hrColor);
color: var(--textColorAccent);
height: 33px;
// position: sticky;
top: 0;
}
thead tr {
// margin: 0 var(--margin);
}
tr {
// margin: calc(var(--margin) * 1.6) var(--margin);
}
th {
white-space: nowrap;
text-align: left;
padding: 0 var(--padding);
font-weight: 500;
}
.headIcon {
font-weight: normal;
color: var(--textColorAccent);
}
.disabledArrow {
opacity: 0.3;
}
td {
padding: 0 var(--padding);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}