Kanban View

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JoeRoot
    Junior Member
    • Jan 2019
    • 12

    Kanban View

    Hello,

    I am quite new to EspoCRM, I want to be able to change the color of the Kanban boxes depending on the stage. How would I approach this?

  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    Hi Joe,

    Administration > Entity Manager > Opportunity - Fields > Stage. Select style for specific stages.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • JoeRoot
      Junior Member
      • Jan 2019
      • 12

      #3
      Thank you for the answer,

      Sorry, I meant the boxes underneath the stages, how could I change them so that, for instance, moving the box from Prospecting to Qualification changes the box from white to blue?

      Comment

      • MATO
        Member
        • Jun 2019
        • 98

        #4
        Did you find a solution for this JoeRoot?

        Comment

        • yuri
          Member
          • Mar 2014
          • 8440

          #5
          You can add custom css https://github.com/espocrm/documenta.../custom-css.md


          Code:
          tr.kanban-row .group-column[data-name="Proposal"] .panel {
             background-color: #d4b1fb;
          }
          For each status.

          Clear cache after.
          If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

          Comment


          • MATO
            MATO commented
            Editing a comment
            Thank you works well

            Anyway to change the txt color without changing the complete site txt?
        • MATO
          Member
          • Jun 2019
          • 98

          #6
          tr.kanban-row .group-column[data-name="Requested"] .panel {
          background-color: #cf605d2b;
          color: #fff !important;

          The "!important" is not seen within the page build

          Comment

          Working...