Replace all CSS variables with explicit hex colors for guaranteed distinction
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<div style="background:color-mix(in srgb,var(--b1),black 20%);border:1px solid var(--b3);border-radius:0.5rem;box-shadow:0 8px 24px rgba(0,0,0,0.3);margin-top:0.25rem;max-height:24rem;overflow-y:auto">
|
||||
<div style="background:#0d0f12;border:1px solid #111316;border-radius:0.5rem;box-shadow:0 8px 24px rgba(0,0,0,0.3);margin-top:0.25rem;max-height:24rem;overflow-y:auto">
|
||||
{#if artists.isEmpty()}
|
||||
<div style="padding:1rem;text-align:center;font-size:0.875rem;color:var(--bc);opacity:0.5">No artists found</div>
|
||||
{#else}
|
||||
{#for artist in artists}
|
||||
<div style="display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem;border-bottom:1px solid var(--b3);transition:background 0.1s"
|
||||
onmouseover="this.style.background='var(--b3)'" onmouseout="this.style.background=''">
|
||||
<div style="display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem;border-bottom:1px solid #111316;transition:background 0.1s"
|
||||
onmouseover="this.style.background='#0d0f12'" onmouseout="this.style.background=''">
|
||||
<div style="flex:1;min-width:0;margin-right:0.5rem">
|
||||
<div style="display:flex;align-items:center;gap:0.5rem">
|
||||
<span style="font-weight:600;font-size:0.9rem">{artist.name}</span>
|
||||
|
||||
Reference in New Issue
Block a user