mirror of
https://github.com/zadam/trilium.git
synced 2025-11-13 09:59:02 +01:00
31 lines
773 B
CSS
31 lines
773 B
CSS
.promoted-attributes {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
align-items: center;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.promoted-attributes .promoted-attribute {
|
|
padding: 2px 10px;
|
|
border-radius: 9999px;
|
|
white-space: nowrap;
|
|
background-color: var(--chip-bg, rgba(0, 0, 0, 0.08));
|
|
color: var(--chip-fg, inherit);
|
|
border: 1px solid var(--chip-border, rgba(0, 0, 0, 0.15));
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.promoted-attributes .promoted-attribute:hover {
|
|
background-color: var(--chip-bg-hover, rgba(0, 0, 0, 0.12));
|
|
border-color: var(--chip-border-hover, rgba(0, 0, 0, 0.22));
|
|
}
|
|
|
|
.promoted-attributes .promoted-attribute .name {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.promoted-attributes .promoted-attribute .value {
|
|
opacity: 0.9;
|
|
} |