Skip to content

Commit dad14c0

Browse files
committed
Fix move highlighting from outlines to background
1 parent b1b0d21 commit dad14c0

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

frontend/src/components/panels/Layers.svelte

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -565,12 +565,12 @@
565565
padding-left: calc(var(--layer-indent-levels) * 16px);
566566
567567
// Dimming
568-
&:hover {
569-
outline: 2px solid var(--color-4-dimgray);
568+
&:hover {
569+
background: var(--color-4-dimgray);
570570
}
571571
572572
&.selected {
573-
background: var(--color-4-dimgray);
573+
background: var(--color-5-dullgray);
574574
}
575575
576576
&.ancestor-of-selected .expand-arrow:not(.expanded) {
@@ -582,7 +582,7 @@
582582
}
583583
584584
&.selected-but-not-in-selected-network {
585-
background: rgba(var(--color-4-dimgray-rgb), 0.5);
585+
background: rgba(var(--color-5-dullgray), 0.5);
586586
}
587587
588588
&.insert-folder {
@@ -617,8 +617,7 @@
617617
}
618618
619619
&:hover:not([disabled]) {
620-
background: var(--color-5-dullgray);
621-
620+
background: var(--color-6-lowergray);
622621
&::after {
623622
background: var(--icon-expand-collapse-arrow-hover);
624623
}

0 commit comments

Comments
 (0)