Hi, I would like a color differentiation from unread emails to read emails. Only the bold lines are not rich in contrast. Is there a simple way to change this in the program code?
Announcement
Collapse
No announcement yet.
Color differentiation between unread e-mails and read e-mails
Collapse
X
-
Add css file
EspoCRM Documentation. Contribute to espocrm/documentation development by creating an account on GitHub.
td[data-name="subject'] strong > a {
color: red;
}
td[data-name="subject'] strong > a:hover {
color: red;
}
td[data-name="subject'] strong > a:active {
color: red;
}
td[data-name="subject'] strong > a:visited{
color: red;
}
-
Thanks a lot, but:
custom/Espo/Custom/Resources/app/client.json
{
"cssList": [
"custom/Espo/Custom/css/Email.css"
]
}
custom/Espo/Custom/css/Email.css
td[data-name="subject'] strong > a {
color: red;
}
td[data-name="subject'] strong > a:hover {
color: red;
}
td[data-name="subject'] strong > a:active {
color: red;
}
td[data-name="subject'] strong > a:visited{
color: red;
}
doesn‘t work. There is also no entry in error log file.Last edited by Flupps; 09-13-2019, 02:22 PM.
Comment
-
I got it, it works. You made a little mistake, you used an inverted comma instead of quotation marks. (td[data-name="subject']).
Thank you very much. That was very helpful, have a nice weekend!
Flupps
Comment
Comment