fix(editor): :global(.ing-list):hover damit Fade-in wirklich greift

This commit is contained in:
hsiegeln
2026-04-19 15:04:26 +02:00
parent 526c7433f4
commit b646720a6e

View File

@@ -162,7 +162,9 @@
opacity: 0;
transition: opacity 0.15s;
}
.ing-list:hover .section-insert,
/* Parent-UL liegt im RecipeEditor, daher :global(.ing-list). Ohne das
scopt Svelte die Klasse und der Selector matcht zur Laufzeit nicht. */
:global(.ing-list):hover .section-insert,
.section-insert:focus-within {
opacity: 1;
}