fresh92 / cssmin

Automatically exported from code.google.com/p/cssmin
0 stars 0 forks source link

CompressUnitValues fails in 3.0b7 #31

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
CSSMin 2.0.2.1 (correct)

{{{
#ru-writer-unit ARTICLE #go2 H3 {
        font-size:.8571em;
        line-height:1.75em;
        margin:1.75em 0 0 0;
        color:#777777;
}
a.minibutton {
        padding:0 0 0 3px;
}
}}}

CSSMin 3.0 beta 7 with (incorrect)

{{{
#ru-writer-unit ARTICLE #go2 H3 {
        font-size:.8571em;
        line-height:1.75em;
        margin:1.75em 0;
        color:#777777;
}
a.minibutton {
        padding:0 3px;
}
}}}

Original issue reported on code.google.com by etorea...@gmail.com on 15 Mar 2011 at 9:45

GoogleCodeExporter commented 8 years ago
Thanks for reporting this bug. As i'm currently busy with real life issues the 
fix will take a week or so.

Original comment by joe.scylla on 22 Mar 2011 at 9:42

GoogleCodeExporter commented 8 years ago
Fixed with revision #152

Original comment by joe.scylla on 20 Jun 2011 at 1:42