73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
.identity {
|
|
display: flex;
|
|
min-width: 0;
|
|
align-items: center;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
.thumb {
|
|
display: inline-flex;
|
|
width: 36px;
|
|
height: 36px;
|
|
flex: 0 0 auto;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg-card-strong);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.thumb img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.identityText,
|
|
.stack {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 2px;
|
|
}
|
|
|
|
.name {
|
|
overflow: hidden;
|
|
color: var(--text-primary);
|
|
font-weight: 650;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.meta {
|
|
overflow: hidden;
|
|
color: var(--text-tertiary);
|
|
font-size: var(--admin-font-size);
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tagList {
|
|
display: flex;
|
|
min-width: 0;
|
|
flex-wrap: wrap;
|
|
gap: var(--space-2);
|
|
}
|
|
|
|
.tag {
|
|
display: inline-flex;
|
|
max-width: 100%;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
background: var(--neutral-surface);
|
|
color: var(--text-secondary);
|
|
font-size: var(--admin-font-size);
|
|
line-height: 1;
|
|
padding: 5px 8px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|