summaryrefslogtreecommitdiffstats
path: root/frontends/php/styles
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-07-30 10:59:01 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-07-30 10:59:01 +0000
commit1c748941b07e728464ef7b165c06358d04d31c55 (patch)
tree55c283d9c21e2d43056daf8beb101d77916ff63a /frontends/php/styles
parent2dabeccc3507f7f02566ab08149c9e76c0228f15 (diff)
downloadzabbix-1c748941b07e728464ef7b165c06358d04d31c55.tar.gz
zabbix-1c748941b07e728464ef7b165c06358d04d31c55.tar.xz
zabbix-1c748941b07e728464ef7b165c06358d04d31c55.zip
- changed how status is viewed in IT Services (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4481 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/styles')
-rw-r--r--frontends/php/styles/div.css27
-rw-r--r--frontends/php/styles/ul.css69
2 files changed, 64 insertions, 32 deletions
diff --git a/frontends/php/styles/div.css b/frontends/php/styles/div.css
new file mode 100644
index 00000000..b233e221
--- /dev/null
+++ b/frontends/php/styles/div.css
@@ -0,0 +1,27 @@
+/* CSS Document */
+
+div.disaster{
+ background-color: #FF0000;
+ width: 100%;
+ height: 100%;
+ margin-right: 5px;
+}
+div.high{
+ background-color: #FF8888;
+ width: 100%;
+ height: 100%;
+ margin-right: 5px;
+}
+
+div.average{
+ background-color: #DDAAAA;
+ width: 100%;
+ height: 100%;
+ margin-right: 5px;
+}
+div.warning{
+ background-color: #EFEFCC;
+ width: 100%;
+ height: 100%;
+ margin-right: 5px;
+} \ No newline at end of file
diff --git a/frontends/php/styles/ul.css b/frontends/php/styles/ul.css
index d152ff1c..38c8fbcd 100644
--- a/frontends/php/styles/ul.css
+++ b/frontends/php/styles/ul.css
@@ -1,33 +1,38 @@
-/* CSS Document */
-ul
-{
- margin-left: 0px;
- padding-left: 1em;
-}
-
-ul.messages
-{
- overflow:auto;
- vertical-align: top;
- border: 1px dashed #000000;
- background-color: #FFFFFF;
- margin: 5px;
-}
-
-ul.messages li
-{
- font-size: 8pt;
- font-family: Verdana, Arial, Helvetica, sans-serif;
-}
-
-ul.messages li.info
-{
- color:#000000;
- list-style: url('../images/general/warning_small.gif') inside;
-}
-
-ul.messages li.error
-{
- color:#AA0000;
- list-style: url('../images/general/error_small.gif') inside;
+/* CSS Document */
+ul
+{
+ margin-left: 0px;
+ padding-left: 1em;
+}
+
+
+ul.itservices{
+ margin: 0px;
+ margin-left: 5px;
+}
+
+ul.messages
+{
+ vertical-align: top;
+ border: 1px dashed #000000;
+ background-color: #FFFFFF;
+ margin: 5px;
+}
+
+ul.messages li
+{
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 8pt;
+}
+
+ul.messages li.info
+{
+ color:#000000;
+ list-style: url('images/general/warning_small.gif') inside;
+}
+
+ul.messages li.error
+{
+ color:#AA0000;
+ list-style: url('images/general/error_small.gif') inside;
} \ No newline at end of file