You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
"See http://bit.ly/ExtendCompound for details.\n";
684
+
std::stringstream sels; bool addComma = false;
685
+
sels << "Compound selectors may no longer be extended.\n";
686
+
sels << "Consider `@extend ";
687
+
for (auto sel : compound->elements()) {
688
+
if (addComma) sels << ", ";
689
+
sels << sel->to_sass();
690
+
addComma = true;
691
+
}
692
+
sels << "` instead.\n";
693
+
sels << "See http://bit.ly/ExtendCompound for details.";
694
+
695
+
warning(sels.str(), compound->pstate());
688
696
689
697
// Make this an error once deprecation is over
690
698
for (SimpleSelectorObj simple : compound->elements()) {
0 commit comments