Adding suffix must select symbol to text label

0
How to put must select icon after the input text box, I checked a bootstrap class “redicon” but it put the red star before the text label, is there any way to put it on after the text label.  A detailed tutorial will be helpful
asked
1 answers
0

You can create your own class in SASS and next add this class for Text box widget in Modeler
 

.required {
    .control-label {
        &::after {
            content: '*';
            color: red;
        }
    }
}

 

answered