Files
feishin/src/renderer/components/item-list/item-table-list/columns/title-combined-column.module.css
T
2025-11-07 17:13:03 -08:00

31 lines
598 B
CSS

.title-combined {
display: grid;
grid-template-columns: calc(var(--row-height) - var(--theme-spacing-sm)) 1fr;
gap: var(--theme-spacing-sm);
align-items: center;
height: 100%;
}
.text-container {
display: grid;
grid-template-rows: 1fr 1fr;
gap: 2px;
min-width: 0;
}
.title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.artists {
display: block;
overflow: hidden;
text-overflow: ellipsis;
font-size: 0.875rem;
color: var(--theme-colors-foreground-muted);
white-space: nowrap;
user-select: none;
}