diff options
author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-02-11 14:48:34 +0000 |
---|---|---|
committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-02-11 14:48:34 +0000 |
commit | 8e0de84965c91f571e94fa4e1bd7848310a787b3 (patch) | |
tree | 36c838de1bbed7a330901d286873fddcde8c9390 /frontends/php/styles/default.css | |
parent | ec99dcce124d70002c5eee4af75a9cf57479b2f1 (diff) | |
download | zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.tar.gz zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.tar.xz zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.zip |
- [DEV-112] added themes option in frontend (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5341 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/styles/default.css')
-rw-r--r-- | frontends/php/styles/default.css | 170 |
1 files changed, 170 insertions, 0 deletions
diff --git a/frontends/php/styles/default.css b/frontends/php/styles/default.css new file mode 100644 index 00000000..bfad6714 --- /dev/null +++ b/frontends/php/styles/default.css @@ -0,0 +1,170 @@ +/* CSS Document */
+/*
+** ZABBIX
+** Copyright (C) 2000-2007 SIA Zabbix
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+**
+*/
+
+body{
+ background-color:#e5e5e5;
+ margin: 0px;
+ padding: 0px;
+ color:black;
+ font-family:verdana, arial, helvetica, sans-serif;
+ font-size:10px;
+ text-decoration: none;
+ line-height:16px;
+}
+
+/**************** MEDIA *****************/
+@media print {
+ div.printless{
+ visibility: hidden;
+ display: none;
+ }
+ div.printonly{
+ display: block;
+ visibility:visible;
+ }
+}
+
+@media screen {
+ div.printless{
+ visibility:visible;
+ display:block;
+ }
+ div.printonly{
+ visibility: hidden;
+ display:none;
+ }
+}
+
+/**************** OTHERS ****************/
+.top { vertical-align: top; }
+.footer { color:#CCCCCC; }
+
+.enabled { color: #00AA00; }
+.disabled { color: #AA0000; }
+.unknown { color: #AAAAAA; }
+.on { color: #AA0000; }
+.off { color: #00AA00; }
+
+.disaster { background-color: #FF0000; }
+.high { background-color: #FF8888; }
+.average { background-color: #DDAAAA; }
+.warning { background-color: #EFEFCC; }
+.information { background-color: #CCE2CC; }
+.unknown_trigger{ background-color: #BCBCBC; }
+.normal { background-color: #AADDAA; }
+
+.img { border-color:black; border-width:1px; }
+img.top { vertical-align:text-top }
+img.bottom { vertical-align:text-bottom }
+
+.center{
+ width: 100%;
+ text-align: center;
+}
+
+.vert{
+ width:1px;
+ /*writing-mode: tb-rl;*/
+}
+
+.rarr{
+ font-size: 16px;
+}
+
+.bold {
+ font-weight: bold;
+}
+
+.nowrap {
+ white-space: nowrap;
+ word-spacing: 0px;
+}
+
+.delimiter{
+ font-weight:bold;
+ color:#000;
+}
+
+/**************** HINT BOX *****************/
+
+#hint_box {
+ top: 0;
+ z-index: 100;
+ position: absolute;
+ background-color: #FFFFE0;
+ padding: 2px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 8pt;
+ line-height:15px;
+ border: 1px solid black;
+ border-left: none;
+ border-top: none;
+ visibility: hidden;
+}
+
+/************** END OF HINT BOX ************/
+
+/************** COLOR PICKER ***************/
+#color_picker {
+ top: 0;
+ z-index: 100;
+ position: absolute;
+ background-color: white;
+ padding: 2px;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ line-height:15px;
+ border: 1px solid black;
+}
+
+#color_picker table tr td {
+ margin: 0px;
+ padding: 2px;
+}
+
+#color_picker a {
+ text-decoration: none;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ padding: 0px;
+ margin: 0px;
+}
+
+/************ END OF COLOR PICKER ***********/
+
+/************** DISCOVERY STATUS ************/
+.dhosts_active {
+ padding: 5px;
+ text-align: center;
+ color: #0FA00F;
+}
+.dhosts_disabled {
+ padding: 5px;
+ text-align: center;
+ color: #A00F0F;
+}
+.dservice_active {
+ background: #0FA00F;
+}
+.dservice_disabled {
+ background: #A00F0F;
+}
+/********** END OF DISCOVERY STATUS *********/
|