in my source I have:
.classname {
color: blue;
}
.classname {
width: 300px
}
I expected to have the same result in my generated code, but instead I
got:
.classname {
width: 300px;
}
.classname {
width: 300px;
}
Seems odd to me. So you can never repeat a classname or it will get
overwritten?
Also I noticed this only happens if its in the same source file, if
you split them up between source files, then the generated is as I
expect.
if(isset($this->parts[$keystr]))
{
$this->parts[$keystr] .= $codestr;
}
else
{
$this->parts[$keystr] = $codestr;
}