
Tag Position on email
I would like to move the coloured tag to the left on the delivered email so that It is in my eyeline area. It resides on the right, I would like it on the left. Is this possible?
Thanks,
Mike Duffy
All Replies (3)
I don't know how to put the tag icon from the right to the left; probably it can be done with some CSS code in the userChrome.css file.
I have some code to colourize tagged messages: see screen shot below. If you're interested I can give you the CSS code
Hi, can I have that code too? Thanks Paul
You can use the following CSS code in a userChrome.css file (works here in TB 140)
/* :::: Threadpane cards view tweaks :::: */
#threadTree[rows="thread-card"] .card-container { color: var(--tag-color);
}
#threadTree tbody tr.selected[data-properties~="tagged"] .card-container { background-color: var(--tag-color) !important; color: var(--tag-contrast-color) !important;
}
If you never used userChrome.css we'll tell you the details to make it work
Modified