Jeckky / dompdf

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

:before pseudoclass is rendered incorecly #411

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
using this CSS cascade:

ul li:before {
    content: "• ";
}

ul li.milestone:before {
    content: "√ ";
}

cause that every LI which has class milestone has rendered √ sign two times. 
Workaround is to name the rest LIs with other class like:

ul li.event:before {
    content: "• ";
}

ul li.milestone:before {
    content: "√ ";
}

This issue is in 0.6b2 version.

Original issue reported on code.google.com by michal.a...@gmail.com on 26 Jan 2012 at 7:47

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r461.

Original comment by fabien.menager on 26 Jan 2012 at 8:26

GoogleCodeExporter commented 8 years ago
Thank you for your bug report!

Original comment by fabien.menager on 26 Jan 2012 at 8:26

GoogleCodeExporter commented 8 years ago

Original comment by eclecticgeek on 30 May 2013 at 5:16