2007-03-02 18:56:07 +01:00
|
|
|
/*
|
2010-05-24 18:17:21 +02:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2004-2010 Artica Soluciones Tecnológicas S.L
|
2007-03-02 18:56:07 +01:00
|
|
|
|
2009-06-08 20:26:14 +02:00
|
|
|
// 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; version 2
|
|
|
|
|
|
|
|
// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
2009-02-04 17:07:43 +01:00
|
|
|
|
2008-12-19 22:45:20 +01:00
|
|
|
.menu {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-width: 0px 0px 0px 0px;
|
|
|
|
border-style: none;
|
|
|
|
border-color: #777;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
|
|
|
.menu ul {
|
2019-01-30 12:42:16 +01:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.menu li.selected,
|
|
|
|
.menu li.not_selected {
|
|
|
|
border: 0px none black;
|
|
|
|
border-bottom: 0px none #d4d4d4;
|
|
|
|
margin: 0;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2015-08-19 13:54:05 +02:00
|
|
|
|
2009-02-06 22:18:03 +01:00
|
|
|
.menu li a {
|
2013-04-10 09:57:54 +02:00
|
|
|
color: #FFFFFF;
|
2008-12-19 22:45:20 +01:00
|
|
|
text-decoration:none;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
li:hover ul {
|
|
|
|
display: block;
|
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2015-08-19 13:16:33 +02:00
|
|
|
.submenu_text {
|
2015-11-17 11:20:45 +01:00
|
|
|
padding: 10.5px;
|
2015-03-26 13:12:48 +01:00
|
|
|
margin-left: 0px;
|
2015-08-19 13:49:09 +02:00
|
|
|
width: 100%;
|
2019-01-24 11:10:49 +01:00
|
|
|
color: #fff;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.menu li.subselected a {
|
|
|
|
background-color: grey !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2009-02-04 17:07:43 +01:00
|
|
|
.menu a:hover {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-decoration: none;
|
|
|
|
border: 0px;
|
2009-02-04 17:07:43 +01:00
|
|
|
}
|
2008-12-19 22:45:20 +01:00
|
|
|
.submenu {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin: 0px 0px 0px 0px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
left: 44px;
|
|
|
|
min-height: 35px;
|
|
|
|
height: 35px;
|
|
|
|
width: 180px;
|
2015-03-26 13:12:48 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.submenu2 {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
left: 180px;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2015-03-26 13:12:48 +01:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.sub_subMenu {
|
|
|
|
min-height: 35px !important;
|
|
|
|
height: 35px;
|
|
|
|
width: 180px;
|
|
|
|
font-weight: normal !important;
|
2015-03-26 13:12:48 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.sub_subMenu.selected {
|
|
|
|
font-weight: bold !important;
|
2009-02-04 17:07:43 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
|
|
|
.submenu2 li a {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-left: 0px;
|
|
|
|
padding-left: 0px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2009-02-10 21:29:45 +01:00
|
|
|
.menu li img.toggle {
|
2019-01-30 12:42:16 +01:00
|
|
|
visibility: hidden;
|
|
|
|
float: right;
|
|
|
|
/* Positions it back where it should be */
|
|
|
|
border-left: 1px;
|
2009-02-04 17:07:43 +01:00
|
|
|
}
|
2015-04-14 09:56:04 +02:00
|
|
|
|
2015-04-06 12:44:35 +02:00
|
|
|
.menu li.has_submenu > a > div {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/arrow.png) no-repeat 80% 50%;
|
|
|
|
z-index: 1; /* Positions it on top of the rest */
|
2009-02-04 17:07:43 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.menu li.has_submenu > .SubNoLink {
|
|
|
|
background: url(../../images/arrow.png) no-repeat 80% 50%;
|
|
|
|
z-index: 1; /* Positions it on top of the rest */
|
2015-04-09 15:04:23 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.is_submenu2 {
|
|
|
|
background-color: #e4e4e4 !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.menu li.submenu_not_selected a,
|
|
|
|
.menu li.submenu2_not_selected a {
|
|
|
|
font-weight: normal !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.submenu_selected {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-bottom: 0px !important;
|
|
|
|
box-shadow: inset 4px 0 #80ba27 !important;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.menu .menu_icon,
|
|
|
|
.menu li.links {
|
|
|
|
background-position: 4px 4px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: pointer;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2009-02-11 17:55:04 +01:00
|
|
|
|
2009-05-29 11:28:48 +02:00
|
|
|
.menu li.links {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../images/link.png);
|
|
|
|
background-position: 4px 8px;
|
2009-05-29 11:28:48 +02:00
|
|
|
}
|
2013-02-20 14:48:46 +01:00
|
|
|
|
2008-12-19 22:45:20 +01:00
|
|
|
/* Icons specified here */
|
2011-08-19 17:14:00 +02:00
|
|
|
#icon_oper-networkconsole {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/op_network.menu.png) no-repeat 50% 50%;
|
2009-03-31 16:32:58 +02:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_oper-agents {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-right-width: 0px;
|
|
|
|
background: url(../../images/op_monitoring.menu.png) no-repeat 50% 50%;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_oper-events {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/op_events.menu.png) no-repeat 50% 50%;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2015-04-10 13:43:02 +02:00
|
|
|
|
2008-12-19 22:45:20 +01:00
|
|
|
/* users */
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_oper-users {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/op_workspace.menu.png) no-repeat 50% 50%;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
|
|
|
/* trap console */
|
2019-01-30 12:42:16 +01:00
|
|
|
#icon_oper-snmpc,
|
|
|
|
#icon_god-snmpc {
|
|
|
|
background: url(../../images/op_snmp.menu.png) no-repeat 50% 50%;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_oper-reporting {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/op_reporting.menu.png) no-repeat 50% 50%;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-01-18 15:23:30 +01:00
|
|
|
#icon_oper-gismaps {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/op_gis.menu.png) no-repeat 50% 50%;
|
2010-01-18 15:23:30 +01:00
|
|
|
}
|
2011-12-21 14:09:26 +01:00
|
|
|
#icon_oper-netflow {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/op_netflow.menu.png) no-repeat 50% 50%;
|
2011-12-21 14:09:26 +01:00
|
|
|
}
|
2015-04-15 17:35:36 +02:00
|
|
|
#icon_oper-extensions {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/extensions.menu.png) no-repeat 50% 50%;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2008-12-19 22:45:20 +01:00
|
|
|
|
|
|
|
/* Godmode images */
|
2015-04-15 17:35:36 +02:00
|
|
|
#icon_god-resources {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_resources.menu.png) no-repeat 50% 50%;
|
2010-01-21 18:08:58 +01:00
|
|
|
}
|
2015-04-15 17:35:36 +02:00
|
|
|
#icon_god-configuration {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_configuration.menu.png) no-repeat 50% 50%;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_god-alerts {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_alerts.menu.png) no-repeat 50% 50%;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_god-users {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_users.menu.png) no-repeat 50% 50%;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_god-reporting {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/reporting_edit.menu.png) no-repeat 50% 50%;
|
2008-12-19 22:45:20 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_god-servers {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_servers.menu.png) no-repeat 50% 50%;
|
2011-12-21 14:09:26 +01:00
|
|
|
}
|
2009-02-06 22:18:03 +01:00
|
|
|
#icon_god-setup {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_setup.menu.png) no-repeat 50% 50%;
|
2011-05-26 12:51:17 +02:00
|
|
|
}
|
2012-02-08 14:04:18 +01:00
|
|
|
#icon_god-events {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/gm_events.menu.png) no-repeat 50% 50%;
|
2015-04-15 17:35:36 +02:00
|
|
|
}
|
|
|
|
#icon_god-extensions {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: url(../../images/builder.menu.png) no-repeat 50% 50%;
|
2015-11-17 12:20:34 +01:00
|
|
|
}
|
|
|
|
#icon_god-links {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-top: 4px solid #777 !important;
|
|
|
|
border-color: #777;
|
|
|
|
background: url(../../images/links.menu.png) no-repeat 50% 50%;
|
2012-02-08 14:04:18 +01:00
|
|
|
}
|
2016-06-09 18:54:59 +02:00
|
|
|
#icon_god-um_messages {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-color: #777;
|
|
|
|
background: url(../../images/um_messages.menu.png) no-repeat 50% 50%;
|
2016-06-09 18:54:59 +02:00
|
|
|
}
|
2013-02-20 14:48:46 +01:00
|
|
|
|
|
|
|
#menu_container {
|
2019-01-30 12:42:16 +01:00
|
|
|
z-index: 3;
|
|
|
|
position: absolute;
|
|
|
|
left: -80px;
|
|
|
|
background-color: #aaa;
|
2013-02-20 14:48:46 +01:00
|
|
|
}
|
2015-03-26 13:12:48 +01:00
|
|
|
|
2016-06-09 18:54:59 +02:00
|
|
|
.notification_ball {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-top: 2px;
|
|
|
|
margin-left: 29px;
|
|
|
|
font-size: 6pt;
|
|
|
|
font-weight: 900;
|
|
|
|
background: red;
|
|
|
|
height: 12px;
|
|
|
|
width: 12px;
|
|
|
|
border-radius: 50px;
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
padding-top: 1px;
|
|
|
|
font-family: sans-serif;
|
2016-06-09 18:54:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 13:12:48 +01:00
|
|
|
ul {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
2015-03-26 13:12:48 +01:00
|
|
|
|
|
|
|
ul li {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:18:46 +02:00
|
|
|
.menu li ul {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
display: none;
|
2015-03-26 13:12:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix IE. Hide from IE Mac \*/
|
2019-01-30 12:42:16 +01:00
|
|
|
* html ul li {
|
|
|
|
float: left;
|
|
|
|
height: 1%;
|
|
|
|
}
|
|
|
|
* html ul li a {
|
|
|
|
height: 1%;
|
|
|
|
}
|
2015-03-26 13:12:48 +01:00
|
|
|
/* End */
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
ul li a:hover {
|
|
|
|
color: #e2144a;
|
|
|
|
} /* Hover Styles */
|
2015-04-07 09:50:46 +02:00
|
|
|
/*li ul li a { padding: 2px 5px; } Sub Menu Styles */
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - MAIN LEFT MENU and SUBMENU -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
.menu li.selected {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_icon{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_icon:hover{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
.submenu_not_selected:hover{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
.submenu_selected:hover{
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
.sub_subMenu{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.sub_subMenu:hover{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li.selected {
|
|
|
|
box-shadow: inset 4px 0 #80BA27;
|
|
|
|
}
|
|
|
|
/* creo que no se usan
|
|
|
|
.is_submenu2 li {
|
|
|
|
background-color: #ff0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is_submenu2 {
|
|
|
|
background-color: #222222 !important;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
.operation {
|
|
|
|
background-color: #333 !important;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-right-width: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.operation .selected {
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li, .menu .li.not_selected {
|
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
|
|
display: block;
|
|
|
|
min-height: 35px;
|
|
|
|
border-bottom: 0px none #424242;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.godmode, .menu_icon ul li{
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
.operation .menu_icon ul li{
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.godmode{
|
|
|
|
border-top: 4px solid #777 !important;
|
|
|
|
padding-bottom: 4px !important;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-right-width: 0px;
|
|
|
|
}
|