I've unsuccessfully search around on how to print my outline with the triangular marks showing collapsed and...
I've unsuccessfully search around on how to print my outline with the triangular marks showing collapsed and expanded branches. Can anyone point me in the right direction?
The print preview below do not show the the triangular marks.
The list screen shot shows the triangular marks that I would like to see in print.
The print preview below do not show the the triangular marks.
The list screen shot shows the triangular marks that I would like to see in print.
Hello,
ReplyDeleteUnfortunately, we haven't implemented arrows on the print view, they are not enabled there. Sorry for that.
KIR
I did try to see whether I can suss out necessary custom CSS for print mode to enable the arrows. But it was a bit beyond me at this moment. 😥
ReplyDeleteI print to PDF my Checkvist list to send to colleagues who are not already users. And usually the list is only partially expanded. Those printed arrows would clearly indicate there are more info in the online list version. Might attract more Checkvist users that way. 😇
S M Sabri Ismail You need something like this?
ReplyDeletehttps://lh3.googleusercontent.com/nWneJffJ6bjAvoguUgeka22Ltk1rEXux-x00fAtciyYCQzid76vlf2qLplqongMjRdcjPsTB2x2IxRbxLvqGFCg-eGYNW6HZ1-0=s0
S M Sabri Ismail .node_expanded>div>span>.taskContent:before{
ReplyDeletefont-family: FontAwesome;
font-size: 1em;
visibility: visible;
content:"\f0d7";
}
Try this one, it must add arrows for each expanded task
S M Sabri Ismail That's how it will look like
ReplyDeletehttps://lh3.googleusercontent.com/myFa-q8ZeUXXXLyWMq02MIktnkja1L2zX-nxuJG-3X7Ser28paI88892YJT0ZNQFcOF8u1KTuRDUU1LiN4C-dCR2iSroz2jn1p0=s0
Yes. TQVM Evgeniy Degtyar 👍🏻😎
ReplyDeleteEvgeniy Degtyar
ReplyDeleteOops. I just tried it. It's actually the opposite what I wanted. I wanted the triangle on unexpanded nodes, since there is nothing to indicate in the print out of the hidden info. For expanded nodes the printout already indicated the data. ;-)
Mmm ... trying the obvious change expanded to unexpanded.
S M Sabri Ismail .node_collapsed>div>span>.taskContent:before{
ReplyDeletefont-family: FontAwesome;
font-size: 1em;
visibility: visible;
content:"\f0da\00a0";
}