how to give color to group box

0
i want to change  color of group box. there is style for group box in built in mendix but i want to add different. so how to write ccss and style . plz give format how to write css or style to chnage the color of group box of mendix  
asked
1 answers
1

Hi Darshana,

If you want to change groupbox header style to add background colour than please find the example SASS style below; 

//Add styles for group box header
.mx-groupbox-header{
      color: #fff;
      border-color: blue;
      background: blue;
      .glyphicon{
          font-size:12px;
      }
}

//Add styles for group box body
.mx-groupbox-body{ 
      border:0;
      padding: 10px;
}

I will recommend you to go through Style your App with CSS learning path to get better understanding.  

 

Hope this helps!

answered