Hover for PropertyGroupHeader not working in CSS

There should be a way to add a “:hover” selector in CSS to the “property-group-header” like

.property-group-header:hover {
background-color: #ff0000;
}

Here is a minimal testproject: Minimal_PropertyGrid.zip - Google Drive

If you a hovering on the propertygroupheader nothing is happen.

Cheers,
Domi

OK, ill take a look at it

Thanks,
Ian

This is fixed in git/master

Cheers,
Ian

1 Like

Yes no it works thanks.

But how is it possible to change the color of “property-group-header-label” on hovering on “property-group-header” ?

Cheers,
Domi

.property-group-header {
    background-color: red;
    pointer-events: true;
}

.property-group-header:hover {
    background-color: blue;
}

should work

Ian

Yes this works, but i want to change the font color of the label in the header while hovering on the header.

Cheers,
Domi

OK, so i just tried it myself and there was a bug (well, oversight really) so that wouldnt have worked, anyway, its fixed now (latest haxeui-core), so this works now:

http://haxeui.org/builder/?piluub

Yes no it works as it should. Thanks for the fix.

Cheers,
Domi

1 Like

great - btw, you dont actually need the pointer-events part as thats set on the default css for the header, so will inherit

I know, i dont use the pointer-events.