RoboHelp 8 - CSS file triples size on generate
I've created a custom CSS file for use with our help projects, which is approximately 12KB. The CSS is valid through the W3C validator.
In many of the projects, the stylesheet doubles and triples in size when I generate. This morning, it's turned into a 58KB file! For some reason, it seems to be duplicating attributes for each style; for example:
body {
margin:0;
padding:0;
border:0;
font-size:100%;
font:inherit;
vertical-align:baseline;
line-height:1;
width:80%;
font-size:12px;
margin:3px 0px 0px 100px;
font-family:Verdana, Tahoma, Arial, Helvetica, sans-serif;
line-height:16px;
color:#000;
background-color:#fff;
margin:0;
padding:0;
border:0;
font-size:100%;
font:inherit;
vertical-align:baseline;
line-height:1;
width:80%;
font-size:12px;
margin:3px 0px 0px 100px;
font-family:Verdana, Tahoma, Arial, Helvetica, sans-serif;
line-height:16px;
color:#000000;
background-color:#ffffff;
}
Any thoughts why this may be happening? The output is FlashHelp, and "Apply to all topics" is not selected.