Имеем:
select, textarea, input[type="text"], input[type="password"] {
color: #000;
}
.error {
select, textarea, input[type="text"], input[type="password"] {
color: red;
}
}
Хочется:
@input-selector: ~'select, textarea, input[type="text"], input[type="password"]';
@{input-selector} {
color: #000;
}
.error {
@{input-selector} {
color: red;
}
}
Но результат не радует:
select, textarea, input[type="text"], input[type="password"] {
color: #000;
}
.error select, textarea, input[type="text"], input[type="password"] {
color: red;
}
Есть ли возможность реализовать такое на less? Т.е. хранить список селекторов в одном месте.