This repository was archived by the owner on Jun 6, 2022. It is now read-only.
This repository was archived by the owner on Jun 6, 2022. It is now read-only.
Using multiple custom-selectors in one selector does not work #19
Closed
Description
For example this:
@custom-selector :--button-types
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger;
:--button-types, :--button-types:active {
color: white;
}
compiles to this:
.btn-primary, :--button-types:active,
.btn-success, :--button-types:active,
.btn-info, :--button-types:active,
.btn-warning, :--button-types:active,
.btn-danger, :--button-types:active {
color: white;
}
instead of this:
.btn-primary, .btn-primary:active,
.btn-success, .btn-success:active,
.btn-info, .btn-info:active,
.btn-warning, .btn-warning:active,
.btn-danger, .btn-danger:active {
color: white;
}