Color of the links in Lists/Details

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Michael Schlumberger
    Junior Member
    • Mar 2023
    • 28

    #1

    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
  • yuri
    EspoCRM product developer
    • Mar 2014
    • 9945

    #2
    Hi Michael,

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


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

    Comment

    • Michael Schlumberger
      Junior Member
      • Mar 2023
      • 28

      #3
      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

      Comment

      Working...