1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-14 23:18:21 +00:00

Fix ha-dropdown-item selected hover (#29602)

Add hover effect for selected dropdown item
This commit is contained in:
Wendelin
2026-02-12 15:32:35 +01:00
committed by GitHub
parent 13d40993ef
commit bd78800d8a

View File

@@ -56,6 +56,9 @@ export class HaDropdownItem extends DropdownItem {
background-color: var(--ha-color-fill-primary-quiet-resting);
--icon-primary-color: var(--primary-color);
}
:host([selected]:hover) {
background-color: var(--ha-color-fill-primary-quiet-hover);
}
`,
];
}