In SUSY v1.x, writing:
.content {
@include container;
}
compiled as
.content {
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.content:after {
content: " ";
display: block;
clear: both;
}
now, in SUSY 2.0 it compiles as
.content {
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.content::after {
content: " ";
display: block;
clear: both;
}
The issue being the two colons in the after pseudo element. A single colon works in all browsers, including IE8 - so I'm wondering: 1) if this was an intentional change or an oversight, as two colons drops support for IE8 and 2) if there's a workaround without writing out all the extra CSS for IE8 "containers".