Color of the links in Lists/Details

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • Michael Schlumberger
    replied
    Thanks here the functional code for others:

    1. Create a file custom/Espo/Custom/Resources/metadata/app/client.json


    Code:
    {
    "cssList": [
    "__APPEND__",
    "client/custom/css/my-theme.css"
    ]
    }
    2. Create a file client/custom/css/my-theme.css:

    Code:
    :root {
    --link-record-color: #0756a5;
    --link-record-hover-color: #0756a5;
    }
    3. Clear Cache in Espo

    Leave a comment:


  • yuri
    replied
    Hi Michael,

    By overriding CSS variables: https://forum.espocrm.com/forum/deve...-css-variables


    Code:
    --link-record-color: #0756a5;
    --link-record-hover-color: #0756a5;

    Leave a comment:


  • Michael Schlumberger
    started a topic Color of the links in Lists/Details

    Color of the links in Lists/Details

    Hi
    In V10, all links in lists or forms are black instead of blue, as they were before.
    Is it possible to change or select the link color?
    Michael
Working...