From b596db70dfe109d3077e0bdaad421a9d86ab3ce7 Mon Sep 17 00:00:00 2001 From: osmiy Date: Fri, 23 Mar 2007 08:52:55 +0000 Subject: - fixed css style git-svn-id: svn://svn.zabbix.com/trunk@3913 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/css.css | 4 ++-- frontends/php/discovery.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontends/php/css.css b/frontends/php/css.css index 9751acd2..bbc0731f 100644 --- a/frontends/php/css.css +++ b/frontends/php/css.css @@ -367,8 +367,8 @@ table.tableinfo tr:hover td.normal { background-color: #AAD9AA; border: 1px #AA table.tableinfo tr td.active { background-color: #AADDAA; border: 1px #AADDAA solid; } table.tableinfo tr:hover td.active { background-color: #AAD9AA; border: 1px #AAD9AA solid; } -table.tableinfo tr td.disabled { background-color: #FF8888; border: 1px #FF8888 solid; } -table.tableinfo tr:hover td.disabled { background-color: #FA8388; border: 1px #FA8388 solid; } +table.tableinfo tr td.inactive { background-color: #FF8888; border: 1px #FF8888 solid; } +table.tableinfo tr:hover td.inactive { background-color: #FA8388; border: 1px #FA8388 solid; } /****** HEADER *********/ table.header diff --git a/frontends/php/discovery.php b/frontends/php/discovery.php index 9bd26aae..3db51ed0 100644 --- a/frontends/php/discovery.php +++ b/frontends/php/discovery.php @@ -80,7 +80,7 @@ include_once "include/page_header.php"; if(DSVC_STATUS_DISABLED == $dservice_data['status']) { - $class = 'disabled'; + $class = 'inactive'; $time = 'lastdown'; } -- cgit