2008-07-10 13:58:40 +02:00
|
|
|
/*
|
2009-03-02 Esteban Sanchez <estebans@artica.es>
* include/functions_menu.php: Added to repository. Functions for menu.
* operation/menu.php, godmode/menu.php: Added class to menu due to
changes in print_menu().
* general/main_menu.php: temp_print_menu() moved to functions_menu.php
* include/functions_themes.php: Added to repository. Implement
functions relative to themes (only CSS themes list at this moment).
* include/styles/pandora.css, include/styles/pandora_black.css,
include/styles/pandora_minimal.css, include/styles/pandora_red.css:
Added author, name and description comments to adopt to new
get_themes() interface.
* include/styles/pandora_width.css: Improved and make lighter by
simply rewrite some classes.
* include/functions.php: Added is_ajax().
* godmode/agentes/module_manager_editor.php,
godmode/alerts/alert_actions.php, godmode/alerts/alert_commands.php,
godmode/alerts/alert_compounds.php, godmode/alerts/alert_list.php,
godmode/alerts/alert_templates.php, godmode/groups/group_list.php,
godmode/reporting/map_builder.php,
godmode/reporting/reporting_builder.php,
operation/agentes/estado_agente.php, operation/agentes/ver_agente.php,
operation/events/events.php, operation/messages/message.php: Use
is_ajax()
* godmode/setup/setup.php: Use enterprise_include() instead of manual
checking. Use get_css_themes() to show the theme list.
* include/styles/common.css: Added to repository. Minimal styles to
make pandora works and common with all the CSS themes.
* include/functions_ui.php: Added common.css file.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1496 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-03-02 14:43:15 +01:00
|
|
|
|
|
|
|
Author: The Pandora FMS team
|
2012-04-30 21:22:07 +02:00
|
|
|
Name: New black theme
|
2009-03-02 Esteban Sanchez <estebans@artica.es>
* include/functions_menu.php: Added to repository. Functions for menu.
* operation/menu.php, godmode/menu.php: Added class to menu due to
changes in print_menu().
* general/main_menu.php: temp_print_menu() moved to functions_menu.php
* include/functions_themes.php: Added to repository. Implement
functions relative to themes (only CSS themes list at this moment).
* include/styles/pandora.css, include/styles/pandora_black.css,
include/styles/pandora_minimal.css, include/styles/pandora_red.css:
Added author, name and description comments to adopt to new
get_themes() interface.
* include/styles/pandora_width.css: Improved and make lighter by
simply rewrite some classes.
* include/functions.php: Added is_ajax().
* godmode/agentes/module_manager_editor.php,
godmode/alerts/alert_actions.php, godmode/alerts/alert_commands.php,
godmode/alerts/alert_compounds.php, godmode/alerts/alert_list.php,
godmode/alerts/alert_templates.php, godmode/groups/group_list.php,
godmode/reporting/map_builder.php,
godmode/reporting/reporting_builder.php,
operation/agentes/estado_agente.php, operation/agentes/ver_agente.php,
operation/events/events.php, operation/messages/message.php: Use
is_ajax()
* godmode/setup/setup.php: Use enterprise_include() instead of manual
checking. Use get_css_themes() to show the theme list.
* include/styles/common.css: Added to repository. Minimal styles to
make pandora works and common with all the CSS themes.
* include/functions_ui.php: Added common.css file.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1496 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-03-02 14:43:15 +01:00
|
|
|
Description: A theme with a dark style
|
|
|
|
|
2009-06-08 20:26:14 +02:00
|
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
|
|
// =============================================
|
2012-04-30 21:22:07 +02:00
|
|
|
// Copyright (c) 2004-2012 Artica Soluciones Tecnologicas S.L
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2008-07-10 13:58:40 +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
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
// 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-05-29 11:28:48 +02:00
|
|
|
@import url(pandora.css);
|
|
|
|
|
|
|
|
body, body.pure {
|
2008-07-10 13:58:40 +02:00
|
|
|
color: #EEE;
|
2011-07-06 13:57:27 +02:00
|
|
|
background-color: #4b4949;
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
h1, h2, h3, h4 {
|
2008-07-10 13:58:40 +02:00
|
|
|
color: #BBB;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: #CCC;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h1#log {
|
|
|
|
color: #FFF;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
|
|
|
div#head {
|
|
|
|
background: #1E1E1E;
|
|
|
|
background-image: url(../../images/header_f2b.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
div#container, div#page, div#main {
|
2009-05-29 11:28:48 +02:00
|
|
|
background-image: none;
|
|
|
|
background-color: #000;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
div#page {
|
|
|
|
border-bottom: solid 5px #001E40;
|
2012-04-30 21:22:07 +02:00
|
|
|
border-top: solid 5px #202020;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
div#foot {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #503030;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
input:hover {
|
|
|
|
background-color: #d4dccd;
|
|
|
|
}
|
|
|
|
input.login {
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
th {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #082C43;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
tr.datos, tr.datost, tr.datosb , tr.datos_id,
|
2012-04-30 21:22:07 +02:00
|
|
|
tr.datosf9 {
|
|
|
|
background-color: rgb(14,14,14);
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
tr.datos:hover, tr.datost:hover, tr.datosb:hover, tr.datos_id:hover,
|
2012-04-30 21:22:07 +02:00
|
|
|
tr.datosf9:hover {
|
|
|
|
background-color: #262626;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tr.datos2, tr.datos2t, td.datos2,
|
|
|
|
tr.datos2b, tr.datos2_id , tr.datos2f9 {
|
|
|
|
background-color: rgb(24,24,24);
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.datos2:hover, tr.datos2t:hover, td.datos2,
|
2009-05-29 11:28:48 +02:00
|
|
|
tr.datos2b:hover, tr.datos2_id:hover, tr.datos2f9:hover {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #363636;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
|
|
|
td.datos2 {
|
|
|
|
line-height: 20px;
|
|
|
|
background-color: #1B1B1B;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.datos {
|
|
|
|
line-height: 20px;
|
|
|
|
background-color: #0E0E0E;
|
|
|
|
}
|
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
td.datos3 {
|
2012-04-30 21:22:07 +02:00
|
|
|
line-height: 20px;
|
2009-05-29 11:28:48 +02:00
|
|
|
background-color: #1e1e1e;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
td.datos_id {
|
2009-05-29 11:28:48 +02:00
|
|
|
color: #1a313a;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
|
|
|
|
tr.rowPair {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #202020;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.rowOdd {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #101010;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.rowPair:hover {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #232323;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.rowOdd:hover {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #151515;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
div.title_line {
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
#menu_tab li a, #menu_tab li.nomn a {
|
|
|
|
background: #082C43;
|
2012-04-30 21:22:07 +02:00
|
|
|
border-left: 1px solid #0C1E56;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
#menu_tab li.nomn_high a {
|
|
|
|
background: #799E48;
|
|
|
|
color: #fff;
|
|
|
|
border-left: 2px solid #778866;
|
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
#menu_tab li.nomn:hover a, #menu_tab li:hover ul a:hover {
|
|
|
|
background-color: #62606a;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
#menu_tab li:hover a {
|
2009-05-29 11:28:48 +02:00
|
|
|
background-color: #62606a;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
#menu_tab li:hover ul a, #menu_tab .mn ul {
|
2009-05-29 11:28:48 +02:00
|
|
|
background-color: #62606a;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
#menu_tab_left li a, #menu_tab_left li span {
|
|
|
|
background-color: #400027;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
#menu_tab_left li.view a {
|
2009-05-29 11:28:48 +02:00
|
|
|
background-color: #0B315B;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
.databox, .databox_color, .databox_frame {
|
2012-04-30 21:22:07 +02:00
|
|
|
border: none;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
.databox {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color:#030303;
|
2008-07-10 13:58:40 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
.databox_color {
|
2012-04-30 21:22:07 +02:00
|
|
|
border-left:none;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
div#main_pure {
|
|
|
|
background-color: #000;
|
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
div.loading {
|
|
|
|
background-color: #BFBFBF;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
|
|
|
|
2009-05-29 11:28:48 +02:00
|
|
|
/* Steps */
|
|
|
|
ol.steps li {
|
|
|
|
background-color: #4D4D4D;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
ol.steps li.current {
|
|
|
|
border-left: 5px solid #CACACA;
|
|
|
|
background-color: #BFBFBF;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
ol.steps li.visited {
|
|
|
|
color: #999 !important;
|
2009-05-13 19:00:58 +02:00
|
|
|
}
|
|
|
|
|
2009-05-29 11:28:48 +02:00
|
|
|
/* Menus */
|
2012-04-30 21:22:07 +02:00
|
|
|
.menu li a {
|
|
|
|
color: #ACACAC;
|
2009-05-13 19:00:58 +02:00
|
|
|
}
|
|
|
|
.submenu li a {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #121212 !important;
|
2009-05-13 19:00:58 +02:00
|
|
|
color: #CCC;
|
|
|
|
}
|
|
|
|
|
2009-05-29 11:28:48 +02:00
|
|
|
.menu li.submenu_selected a {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #9c9c9c !important;
|
2009-05-29 11:28:48 +02:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
.menu li.selected {
|
|
|
|
background-color: #333 !important;
|
|
|
|
}
|
|
|
|
.menu li.links {
|
2012-04-30 21:22:07 +02:00
|
|
|
border-color: #333 ;
|
2009-05-13 19:00:58 +02:00
|
|
|
}
|
|
|
|
.submenu li a {
|
|
|
|
border-color: #333;
|
|
|
|
}
|
|
|
|
.menu {
|
|
|
|
border-color: #333;
|
|
|
|
}
|
2009-05-29 11:28:48 +02:00
|
|
|
.menu .menu_icon, .menu li.links {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #000 !important;
|
2009-05-29 11:28:48 +02:00
|
|
|
}
|
2011-07-07 11:04:24 +02:00
|
|
|
|
|
|
|
#ip {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.login {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.databox_login {
|
|
|
|
color: #000000;
|
|
|
|
}
|
2011-09-06 16:58:09 +02:00
|
|
|
|
|
|
|
/*CALENDAR TOOLTIP STYLE*/
|
|
|
|
|
|
|
|
/* Calendar background */
|
|
|
|
table.scw {
|
|
|
|
background-color: #505050;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Today selector */
|
|
|
|
td.scwFoot {
|
|
|
|
background-color: #505050;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
.bg {
|
|
|
|
background-color: #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bg3 {
|
|
|
|
background-color: #082C43;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
a.datos_yellow, a.datos_yellowf9 {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
background-color: #050505;
|
|
|
|
border: 1px solid #303030;
|
|
|
|
color: #ababab;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset legend {
|
|
|
|
color: #ababab;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.databox_color {
|
|
|
|
background-color: #0E0E0E;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notify {
|
|
|
|
color: #181818;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info_box {
|
|
|
|
background-color: #BCBCBC;
|
|
|
|
margin: 10px 0px 10px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#menu_tab_frame_view {
|
|
|
|
background: #333333 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Godmode */
|
|
|
|
#menu_tab_frame {
|
|
|
|
background: #082C43 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab_frame, #menu_tab_frame_view {
|
|
|
|
display: block !important;
|
|
|
|
border-bottom: 1px solid #082C43;
|
|
|
|
margin-left:-8px;
|
|
|
|
min-height:25px;
|
|
|
|
padding-right:28px;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu a:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is_submenu2 {
|
|
|
|
background-color: #222222 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul {
|
|
|
|
background-color: #101010;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#menu_tab li.separator, #menu_tab li.separator_view {
|
|
|
|
background: none !important;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input#text-id_parent.ac_input, input, textarea, select{
|
|
|
|
background-color: #cfcfcf !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li, menu li.selected, .menu li.not_selected {
|
|
|
|
border: 0px none;
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul {
|
|
|
|
background-color: #202020 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li a:hover,
|
|
|
|
.submenu li a:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog-content {
|
|
|
|
background-color: #404040 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info_box {
|
|
|
|
box-shadow: 0px 5px 5px rgb(22,22,22);
|
|
|
|
}
|
2012-06-20 19:38:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
.ac_results {
|
|
|
|
color: #000000 !important;
|
|
|
|
}
|