anyrun
anyrun copied to clipboard
CSS selector for active element
I am unable to figure out which css selector selects the current active list element instead of every list element. I have tried element:foucs, element:hover and element:hover.
You can select the active element with #match:selected
.
#match:selected {
background-color: red;
}