style: redesign hint buttons — rectangular pink with white icon, more spacing

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
thibaud-leclere
2026-03-31 11:09:57 +02:00
parent dc5e14531f
commit ecfc80c349

View File

@@ -46,6 +46,10 @@ body {
vertical-align: middle; vertical-align: middle;
} }
#actors td:first-child {
padding-right: 12px;
}
.letter-input { .letter-input {
width: 38px; width: 38px;
height: 38px; height: 38px;
@@ -99,26 +103,24 @@ body {
/* ── Popover ── */ /* ── Popover ── */
.popover-trigger { .popover-trigger {
width: 28px; width: 38px;
height: 28px; height: 28px;
border-radius: 50%; border-radius: 6px;
border: 1.5px solid var(--border); border: none;
background: var(--surface); background: #F02287;
cursor: pointer; cursor: pointer;
font-size: 12px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: var(--text-muted); color: #ffffff;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
transition: border-color 0.15s, color 0.15s, background 0.15s; transition: background 0.15s;
box-shadow: 0 1px 3px var(--shadow-warm); box-shadow: 0 1px 3px var(--shadow-warm);
} }
.popover-trigger:hover { .popover-trigger:hover {
border-color: var(--orange); background: #d41a76;
color: var(--orange);
background: var(--surface-tint);
} }
.actor-popover { .actor-popover {