This repository was archived by the owner on Dec 24, 2020. It is now read-only.
This repository was archived by the owner on Dec 24, 2020. It is now read-only.
CSS optmizer #187
Open
Description
Hi, are there any plans to incorporate a css optimiser option? I find myself avoiding features in Less such as inheritance because I'm aware that they aren't optimised and repeats redundant declarations.
Less example:
.strong { background:#31343b; color:white; font-weight:normal; padding:2px 10px; margin-right:10px; }
.small { .strong; background:#ff0000; }
Compliles to:
.strong {
background: #31343b;
color: white;
font-weight: normal;
padding: 2px 10px;
margin-right: 10px;
}
.small {
background: #31343b;
color: white;
font-weight: normal;
padding: 2px 10px;
margin-right: 10px;
background: #ff0000;
}
When optimised it should be:
.strong,.small{background:#31343b;color:white;font-weight:normal;padding:2px 10px;margin-right:10px}
.small{background:#ff0000}
Metadata
Metadata
Assignees
Labels
No labels