Files
feishin/src/renderer/components/item-list/item-table-list/columns/title-artist-column.module.css
T
2026-01-18 17:45:58 -08:00

68 lines
1.0 KiB
CSS

.title-artist {
display: flex;
gap: var(--theme-spacing-sm);
width: 100%;
height: 100%;
}
.text-container {
display: grid;
grid-template-rows: 1fr 1fr;
gap: var(--theme-spacing-xs);
min-width: 0;
}
.text-container.align-left {
justify-items: start;
}
.text-container.align-center {
justify-items: center;
}
.text-container.align-right {
justify-items: end;
}
.text-container.compact {
gap: 0;
}
.title {
display: inline-block;
width: 100%;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a.title {
width: auto;
}
.artists {
display: block;
width: 100%;
min-width: 0;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
font-size: var(--theme-font-size-xs) !important;
color: var(--theme-colors-foreground-muted);
white-space: nowrap;
user-select: none;
}
.folder-icon {
color: black;
fill: rgb(255 215 100);
}
.active {
color: var(--theme-colors-primary);
}