waveterm/frontend/app/view/directorypreview.less

63 lines
1.6 KiB
Plaintext
Raw Normal View History

.dir-table {
overflow: auto;
width: 100%;
border-radius: 3px;
.dir-table-head {
.dir-table-head-row {
display: flex;
border-bottom: 2px solid var(--border-color);
padding: 4px 0;
2024-06-04 03:22:26 +02:00
background-color: var(--panel-bg-color);
.dir-table-head-cell {
position: relative;
padding: 2px 4px;
2024-06-04 03:22:26 +02:00
font-weight: bold;
.dir-table-head-resize {
position: absolute;
top: 0;
right: 0;
height: 100%;
cursor: col-resize;
user-select: none;
touch-action: none;
width: 2px;
background: linear-gradient(var(--border-color), var(--border-color)) no-repeat center/2px 100%;
}
&:last-child {
.dir-table-head-resize {
width: 0;
}
}
}
}
}
.dir-table-body {
.dir-table-body-row {
display: flex;
border-radius: 3px;
2024-06-04 03:22:26 +02:00
&:focus {
background-color: var(--accent-color);
}
2024-06-04 03:22:26 +02:00
&:hover:not(:focus) {
background-color: var(--highlight-bg-color);
}
.dir-table-body-cell {
overflow: hidden;
white-space: nowrap;
padding: 0.25rem;
2024-06-04 03:22:26 +02:00
cursor: default;
&.col-size {
text-align: right;
}
}
}
}
}