summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-23 08:52:55 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-23 08:52:55 +0000
commitb596db70dfe109d3077e0bdaad421a9d86ab3ce7 (patch)
tree0f39e11ce1b7614960ad5cf280e3afd2a5cce2d6
parent93789e2afe6d990ce338a37238393a4ffd46b2e1 (diff)
downloadzabbix-b596db70dfe109d3077e0bdaad421a9d86ab3ce7.tar.gz
zabbix-b596db70dfe109d3077e0bdaad421a9d86ab3ce7.tar.xz
zabbix-b596db70dfe109d3077e0bdaad421a9d86ab3ce7.zip
- fixed css style
git-svn-id: svn://svn.zabbix.com/trunk@3913 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r--frontends/php/css.css4
-rw-r--r--frontends/php/discovery.php2
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';
}