2026-07-22 15:36:23 +01:00
|
|
|
.icon {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
min-width: 24px;
|
|
|
|
|
min-height: 24px;
|
|
|
|
|
margin: -6px 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: none;
|
|
|
|
|
background: none;
|
|
|
|
|
/* font-size:0 hides the button's own "?" text node; the ::before glyph
|
|
|
|
|
below carries the visible circled "?" at its own explicit size. */
|
|
|
|
|
font-size: 0;
|
2026-08-06 12:13:04 +01:00
|
|
|
color: var(--text-muted);
|
2026-07-22 15:36:23 +01:00
|
|
|
cursor: help;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
user-select: none;
|
|
|
|
|
transition: color 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The visible affordance: a small circled "?" centred in the 24px target. */
|
|
|
|
|
.icon::before {
|
|
|
|
|
content: '?';
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 15px;
|
|
|
|
|
height: 15px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 1px solid currentColor;
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon:hover,
|
|
|
|
|
.icon[aria-expanded='true'],
|
|
|
|
|
.icon:focus-visible {
|
2026-08-06 12:13:04 +01:00
|
|
|
color: var(--brand-strong);
|
2026-07-22 15:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
width: max-content;
|
|
|
|
|
max-width: min(260px, calc(100vw - 24px));
|
2026-08-06 12:13:04 +01:00
|
|
|
background: var(--bg-primary);
|
|
|
|
|
border: 1px solid var(--border);
|
2026-07-22 15:36:23 +01:00
|
|
|
border-radius: 10px;
|
2026-08-06 12:13:04 +01:00
|
|
|
box-shadow: 0 4px 16px rgba(var(--shadow-rgb), 0.15);
|
2026-07-22 15:36:23 +01:00
|
|
|
padding: 0.6rem 0.75rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow {
|
2026-08-06 12:13:04 +01:00
|
|
|
fill: var(--bg-primary);
|
|
|
|
|
stroke: var(--border);
|
2026-07-22 15:36:23 +01:00
|
|
|
stroke-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 0.75rem;
|
2026-08-06 12:13:04 +01:00
|
|
|
color: var(--text-primary);
|
2026-07-22 15:36:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plain {
|
|
|
|
|
font-size: 0.75rem;
|
2026-08-06 12:13:04 +01:00
|
|
|
color: var(--text-secondary);
|
2026-07-22 15:36:23 +01:00
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail {
|
|
|
|
|
font-size: 0.7rem;
|
2026-08-06 12:13:04 +01:00
|
|
|
color: var(--text-muted);
|
2026-07-22 15:36:23 +01:00
|
|
|
line-height: 1.4;
|
|
|
|
|
margin-top: 0.1rem;
|
|
|
|
|
}
|