I have something like this in me .less file
.form-section {
.special-check {
width: 100%;
display: block;
.ui-selectmenu-button();
width: auto;
overflow: hidden;
}
which will ofc. generate .form-section .special-check
and I want to have something like this .form-section .special-check, .something
but I don't know how to do it in less. ofc i could just copy and pase rules for .something
but that's not good solution. Do you know how to do it?
Thank you very much for your time.