Is there any way to change the default progress bar?

3
Hey everyone!   I want to change the progress bar that Mendix shows by default.  I would like to know how to add some text to it or how can I change the some styles, for example the color.   Does anyone know how to accomplish this?   Thanks in advance.
asked
2 answers
3

Hi Emilio,

I think you have the styles in progress.scss

answered
0

Hi Emilio, 


if you're still looking for a way to style it, try it with these classes:

.mx-progress {
    .mx-progress-message { }
    .mx-progress-indicator { }
    &::before { 
       content:'MyText';
      }
}

You can add/change any property to the classes, e.g. adding text before the loading bar (but be aware that it’s hardcoded) or colors.

 

I hope this helps.

answered