summaryrefslogtreecommitdiffstats
path: root/frontends/php/styles/table.css
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-05-10 10:55:37 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-05-10 10:55:37 +0000
commit20d8801440d4dc03c213e59cd278183bb37f24b2 (patch)
treee0acb0ec925da22ed6b1fab81b2d547670bbf050 /frontends/php/styles/table.css
parent8bfb00dbb5a1c423236630cddfeaa5ee74ab9659 (diff)
downloadzabbix-20d8801440d4dc03c213e59cd278183bb37f24b2.tar.gz
zabbix-20d8801440d4dc03c213e59cd278183bb37f24b2.tar.xz
zabbix-20d8801440d4dc03c213e59cd278183bb37f24b2.zip
- [DEV-169] improved msg functionality in GUI (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5694 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/styles/table.css')
-rw-r--r--frontends/php/styles/table.css61
1 files changed, 60 insertions, 1 deletions
diff --git a/frontends/php/styles/table.css b/frontends/php/styles/table.css
index 6ebedc7d..7a336ee9 100644
--- a/frontends/php/styles/table.css
+++ b/frontends/php/styles/table.css
@@ -1120,4 +1120,63 @@ table.history td.caption{
text-align:left;
}
-/**************** </HISTORY> *****************/ \ No newline at end of file
+/**************** </HISTORY> *****************/
+
+
+/***************** <MESSAGE> *****************/
+table.msgok{
+ width: 100%;
+ border: 1px #44CC44 solid;
+ margin-bottom: 2px;
+}
+
+table.msgok tr{
+ height: 26px;
+}
+
+table.msgok td{
+ color:#333;
+ font-family: Verdana, Helvetica, Geneva;
+ font-size:11px;
+ text-align:center;
+}
+
+table.msgok td.clr{
+ width: 60px;
+ background-color:#44CC44;
+ font-size:10px;
+ font-weight: bold;
+}
+
+table.msgok td.msg{
+ background-color:#BBFFBB;
+}
+
+table.msgerr{
+ width: 100%;
+ border: 1px #CC4444 solid;
+ margin-bottom: 2px;
+}
+
+table.msgerr tr{
+ height: 26px;
+}
+
+table.msgerr td{
+ color:#333;
+ font-family: Verdana, Helvetica, Geneva;
+ font-size:11px;
+ text-align:center;
+}
+
+table.msgerr td.clr{
+ width: 60px;
+ background-color:#CC4444;
+ font-size:10px;
+ font-weight: bold;
+}
+
+table.msgerr td.msg{
+ background-color:#FFBBBB;
+}
+/**************** </MESSAGE> *****************/ \ No newline at end of file