anyrun-org / anyrun

A wayland native, highly customizable runner.
GNU General Public License v3.0
560 stars 44 forks source link

CSS selector for active element #151

Open Shaharyar-developer opened 2 months ago

Shaharyar-developer commented 2 months ago

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.

Lau-San commented 6 days ago

You can select the active element with #match:selected.

#match:selected {
    background-color: red;
}

20240628_22h40m47s_grim