Color differentiation between unread e-mails and read e-mails

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • Flupps
    replied
    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
    Last edited by Flupps; 09-14-2019, 08:39 AM. Reason: Edited because the solution was found.

    Leave a comment:


  • yuri
    replied
    You need to place it in and make sure it's readable by the webserver.
    client/custom/

    Clear cache

    Leave a comment:


  • Flupps
    replied
    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.

    Leave a comment:


  • yuri
    replied
    Add css file


    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;
    ​​​​​​​}




    Leave a comment:


  • Color differentiation between unread e-mails and read e-mails

    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?
Working...