how can I change font color based on Action type

0
    In show messages Action Activity, Change font color based on Action type for Warning,error messages → red for information → green          
asked
1 answers
1

Hi,

Add custom style in your scss file (theme\styles\web\sass\app).

 

The following styles will change the color of headers of the pop up dialogs you asked for.

For error:

.modal-dialog -error .modal-content .modal-header {

background: red;​​​​​​

}

For warning:

.modal-dialog -warning .modal-content .modal-header {

background: red;​​​​​​

}

For information:

.mx-dialog-info  .modal-content .modal-header {

background: green;​​​​​​

}

 

answered