Ad Widget

Collapse

Color substitution for red and green

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tbuskey
    Junior Member
    • Feb 2008
    • 2

    #1

    Color substitution for red and green

    I'm red/green colorblind like 20% of the male population. I can't tell the difference between red and green squares on the overview page. Dark green and Dark Red would be ok but light colors look the same to me.

    Is there anyway to change this on a per user basis? Either in the Zabbix configuration or in firefox's userContent.css?

    FWIW I don't have access to the Zabbix server
  • skogan
    Member
    • Nov 2007
    • 70

    #2
    A quick inspection of the content in firebug:

    For "normal" (green):
    Code:
    table.tableinfo tr td.normal {
    background-color:#AADDAA;
    border:1px solid #AADDAA;
    }
    for "high" (red):
    Code:
    table.tableinfo tr td.high {
    background-color:#FF8888;
    border:1px solid #FF8888;
    }
    I guess these valuse could be overridden in userContent.css

    Comment

    • tbuskey
      Junior Member
      • Feb 2008
      • 2

      #3
      I've added this to the end of my userContent.css:

      table.tableinfo tr td.normal {
      background-color:#339900;
      border:1px solid #339900;
      }
      table.tableinfo tr td.high {
      background-color:#990000;
      border:1px solid #990000;
      }


      Then stop & start firefox. It doesn't seem to make a difference :-(

      Comment

      • jeenam
        Member
        • Oct 2007
        • 43

        #4
        colorblind

        Has anyone found a working fix for this? One of my developers is colorblind and he can't tell up from down when looking at the status pages.

        Comment

        • Aly
          ZABBIX developer
          • May 2007
          • 1126

          #5
          css.css line ~1090 try to change those color attributes.
          Zabbix | ex GUI developer

          Comment

          • jeenam
            Member
            • Oct 2007
            • 43

            #6
            thanks but...

            Aly thanks for the quick reply but chaning the values in css.css didn't seem to change anything. Tried ff, opera and ie7 with cleared caches.


            .enabled { color: #3300FF; }
            .disabled { color: #CD2626; }
            .unknown { color: #AAAAAA; }
            .on { color: #CD2626; }
            .off { color: #3300FF; }

            Any other suggestions? And yes, the web server was reloaded.

            Comment

            • Aly
              ZABBIX developer
              • May 2007
              • 1126

              #7
              Also look to lines ~515.. Try to change them either.
              Zabbix | ex GUI developer

              Comment

              Working...