diff --git a/public/css/index-tailwind-output.css b/public/css/index-tailwind-output.css index ecb93e65ac..43cb205942 100644 --- a/public/css/index-tailwind-output.css +++ b/public/css/index-tailwind-output.css @@ -4891,6 +4891,11 @@ a.link-underline { animation: glowing-drop-shadow 1s ease-in-out infinite alternate; } +.selected .light-icon svg:not(.noselect *) path.selectable { + stroke: #4a4a4a !important; + stroke-width: 10px !important; +} + .selected svg { /* A marker on the map gets the 'selected' class when it's properties are displayed */ diff --git a/src/UI/Map/DynamicIcon.svelte b/src/UI/Map/DynamicIcon.svelte index e1987a26cf..dcc5a0efc4 100644 --- a/src/UI/Map/DynamicIcon.svelte +++ b/src/UI/Map/DynamicIcon.svelte @@ -24,6 +24,10 @@ {#if iconItem?.startsWith("<")} {@html iconItem} +{:else if color === "white"} + + + {:else} {/if} diff --git a/src/index.css b/src/index.css index db06e15567..e01331df81 100644 --- a/src/index.css +++ b/src/index.css @@ -531,6 +531,11 @@ a.link-underline { animation: glowing-drop-shadow 1s ease-in-out infinite alternate; } +.selected .light-icon svg:not(.noselect *) path.selectable { + stroke: #4a4a4a !important; + stroke-width: 10px !important; +} + .selected svg { /* A marker on the map gets the 'selected' class when it's properties are displayed */