Robohelp messes up CSS
Hi,
Using version: 2020.8.34
I've noticed that Robohelp messes up my custom CSS upon generation in certain scenarios.
So I have a custom CSS file that is included in the masterpage. When editing this within Robohelp it looks good but when the generation of the project is done the CSS gets messed up.
I haven't pinpointed exactly when this happens but it looks like Robohelp have a issue with parsing CSS that contains ">" (directly nested elements).
As an example I have this CSS in my file:
table > tbody > tr:last-child > th,
table > tbody > tr:last-child > td {
border-bottom: none;
}
Now the result of that in the generated CSS looks like this:
.RH-LAYOUT-CENTERPANEL-topic-box> tr:last-child > th,
.RH-LAYOUT-FOOTER-container> tr:last-child > th,
.RH-LAYOUT-CENTERPANEL-topic-box> tr:last-child > td,
.RH-LAYOUT-FOOTER-container> tr:last-child > td {
border-bottom: none;
}
As you can see the first part "table > tbody" is simply removed from my initial CSS... And the result is a jibberish of CSS. The 4 generated rows points to classes that doesn't exists.
Please help since this casues major problems trying to style our content and I simply can't work if I can't count on what I see inside Robohelp and what I know should work but in the end ends up like a total mess.
