how can I change groupbox header border color on collapsed or expanded?

0
By default when we collapse or expand the groupbox, border color is black, but I want to change that.
asked
2 answers
0

Hi Sushma,

You can edit the general color in the properties:

If you want a different color whether it is collapsed or not, you can use some CSS. Set the uncollapsed groupbox color using above or in CSS:

.mx-groupbox > .mx-groupbox-header {
background-color: green;
}

The collapsed header can be colored similarly:

.mx-groupbox.collapsed > .mx-groupbox-header {
background-color: purple;
}

Hope this helps!

Cheers,

Daan

answered
0

GroupBOX help required – not working expected as shown below

Mendix Forum - Questions (mendixcloud.com)

 

ANY SUGGESTIONS??

answered