For Flare 11 -- I'd be very interested to know if the behavior described below still exists in later versions of Flare (especially 2017).
IF in my default CSS medium, I specify formatting for individual items generated by a list-of proxy, THEN the formatting:
■ IS visible in a TopNav Target (but NOT in a TopNav preview)
■ Is NOT visible in a PDF Target (or in a PDF preview)
With regard to the second bullet item, even though the default CSS medium's setting should cascade downward to the @ media print section of the CSS, I did also copy the same CSS to the print section just to sanity-check myself...
Guided in part by this related Forum post -- change color of listOfProxy -- the CSS I'm using to debug this problem is as follows:
Code: Select all
MadCap|listOfProxy.qListPending
{
mc-list-of-tag: h2;
mc-list-of-class: pendingQuestions;
border: solid 1px red;
}
MadCap|listOfProxy.qListAnswered
{
mc-list-of-tag: h2;
mc-list-of-class: answeredQuestions;
border: solid 1px green;
}
td.GenListOfTextListOf
{
border: solid 1px blue;
}
a.GenListOfTextListOf
{
border: solid 1px magenta;
}The problem is that I CANNOT get the same formatting to appear in a PDF Target (or a PDF preview).
Is there some non-intuitive "trick" I need to use to format list-of proxy entries in a PDF?
Or is this a Flare 11 bug that has been fixed in later versions of the product?
Or...?
Cheers & thanks,
Riley
SFO
P.S. Formatting list-of proxy items is absurdly complicated. I needed to use DEV tools to find out what CSS classes end up being applied to the TopNav output, then search this Forum. This process needs to be documented. Or better yet, be made MUCH easier to do...