2026-05-29 02:16:15 +02:00
|
|
|
/* ── Link chip ───────────────────────────────────────────────────────────────
|
|
|
|
|
*
|
|
|
|
|
* Inline clickable element representing a share link.
|
|
|
|
|
* Usage: buildLinkChip(grant) → HTMLButtonElement with class .link-chip
|
|
|
|
|
* ─────────────────────────────────────────────────────────────────────────── */
|
|
|
|
|
|
|
|
|
|
.link-chip {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
max-width: 100%;
|
2026-06-15 00:17:17 +02:00
|
|
|
padding: var(--space-0-5) 0;
|
2026-05-29 02:16:15 +02:00
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--color-text);
|
|
|
|
|
cursor: pointer;
|
2026-06-15 00:17:17 +02:00
|
|
|
font-size: var(--text-sm);
|
2026-05-29 02:16:15 +02:00
|
|
|
text-align: left;
|
|
|
|
|
transition: color 0.12s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link-chip:hover {
|
|
|
|
|
color: var(--color-accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link-chip:disabled {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link-chip__icon {
|
2026-06-15 00:17:17 +02:00
|
|
|
font-size: var(--text-xs);
|
2026-05-29 02:16:15 +02:00
|
|
|
color: var(--color-text-faint);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
transition: color 0.12s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link-chip:hover .link-chip__icon {
|
|
|
|
|
color: var(--color-accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link-chip__label {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|