2007-06-02 15:54:02 +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
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
This is not a theme, is a minimal CSS for inclusion in some code.
|
|
|
|
|
|
|
|
Exclude css from visual styles
|
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
|
|
|
|
2009-06-08 20:26:14 +02:00
|
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
|
|
// =============================================
|
2020-11-27 13:52:35 +01:00
|
|
|
// Copyright (c) 2004-2021 Artica Soluciones Tecnológicas S.L
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2007-06-02 15:54:02 +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
|
|
|
|
2007-06-02 15:54:02 +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.
|
|
|
|
*/
|
2021-06-10 10:19:11 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-Regular.woff") format("woff");
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-Light.woff") format("woff");
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-Thin.woff") format("woff");
|
|
|
|
font-weight: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-Bold.woff") format("woff");
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-Black.woff") format("woff");
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-Italic.woff") format("woff");
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-LightItalic.woff") format("woff");
|
|
|
|
font-weight: 300;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-ThinItalic.woff") format("woff");
|
|
|
|
font-weight: 100;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-BoldItalic.woff") format("woff");
|
|
|
|
font-weight: 700;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../fonts/Lato-BlackItalic.woff") format("woff");
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "source-code";
|
|
|
|
src: url("../fonts/SourceCodePro.woff") format("woff");
|
|
|
|
font-family: "source-code";
|
|
|
|
}
|
2007-06-02 15:54:02 +02:00
|
|
|
|
|
|
|
* {
|
2021-06-10 10:19:11 +02:00
|
|
|
font-size: 8.5pt;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
line-height: 16pt;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
body {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-align: center;
|
2021-06-10 10:19:11 +02:00
|
|
|
color: #303030;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
h1 {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
color: #786;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-top: 7px;
|
|
|
|
font-size: 16px;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
a {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #486787;
|
|
|
|
text-decoration: none;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
a:hover {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #003a3a;
|
|
|
|
text-decoration: underline;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
input {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding: 2px 3px 4px 3px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
font-size: 8pt;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
input:hover {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #d4dccd;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2007-06-02 15:54:02 +02:00
|
|
|
input.login {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-color: #786;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
margin: 2px 0 8px;
|
|
|
|
width: 90px;
|
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
table,
|
|
|
|
img {
|
|
|
|
border: 0px;
|
|
|
|
}
|
2021-06-10 10:19:11 +02:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.f9,
|
|
|
|
.f9i,
|
|
|
|
.f9b,
|
|
|
|
td.f9,
|
|
|
|
td.f9i,
|
|
|
|
td.datosf9,
|
|
|
|
td.datos2f9 {
|
|
|
|
font-size: 6.5pt;
|
|
|
|
}
|
|
|
|
.databox,
|
|
|
|
.databox_frame {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-left: 0px;
|
|
|
|
border: 1px solid #f2f2f2;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
|
|
|
.databox {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #fafafa;
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2013-02-18 19:10:53 +01:00
|
|
|
|
2012-04-18 18:08:48 +02:00
|
|
|
#show_menu {
|
2007-06-02 15:54:02 +02:00
|
|
|
}
|
2012-04-18 18:08:48 +02:00
|
|
|
|
2008-07-04 12:52:27 +02:00
|
|
|
#loading {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: fixed;
|
|
|
|
width: 200px;
|
|
|
|
margin-left: 35%;
|
|
|
|
text-align: center;
|
|
|
|
top: 300px;
|
|
|
|
background-color: #999999;
|
|
|
|
padding: 20px;
|
2008-07-04 12:52:27 +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 {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #fff;
|
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 {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #888;
|
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 {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #bbb;
|
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 {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #444;
|
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
|
|
|
}
|
2009-09-25 18:04:14 +02:00
|
|
|
|
|
|
|
.disabled_module {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #98c2ed;
|
2010-06-07 17:22:29 +02:00
|
|
|
}
|
2011-09-06 16:58:09 +02:00
|
|
|
|
|
|
|
/*CALENDAR TOOLTIP STYLE*/
|
|
|
|
|
|
|
|
/* Calendar background */
|
|
|
|
table.scw {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #fff;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Week number heading */
|
|
|
|
td.scwWeekNumberHead {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
td.scwWeek {
|
2019-05-30 18:21:13 +02:00
|
|
|
color: #000;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Today selector */
|
|
|
|
td.scwFoot {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #fff;
|
|
|
|
color: #000;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
td.scwFootDisabled {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #000;
|
|
|
|
color: #ffffff;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tfoot.scwFoot {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.scwFoot :hover {
|
2019-05-30 18:21:13 +02:00
|
|
|
color: #ffa500;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
2012-04-18 18:08:48 +02:00
|
|
|
input.next {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #e5e5e5 url(../../images/go.png) no-repeat 98% 2px;
|
2012-04-18 18:08:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input.next {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding-right: 21px;
|
2012-04-18 18:08:48 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 16:22:38 +02:00
|
|
|
.info_box {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #ebebeb;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 5px;
|
|
|
|
border: 1px solid #a8a8a8;
|
2019-05-30 18:21:13 +02:00
|
|
|
width: 85%;
|
|
|
|
-moz-box-shadow: 0px 2px 2px #010e1b;
|
|
|
|
-webkit-box-shadow: 0px 2px 2px #010e1b;
|
|
|
|
box-shadow: 0px 2px 2px #010e1b;
|
2012-06-07 16:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.info_box .title * {
|
2019-05-30 18:21:13 +02:00
|
|
|
font-size: 10pt;
|
2019-01-30 12:42:16 +01:00
|
|
|
font-weight: bolder;
|
2012-06-07 16:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.info_box .icon {
|
2019-05-30 18:21:13 +02:00
|
|
|
width: 30px;
|
2019-01-30 12:42:16 +01:00
|
|
|
text-align: center;
|
2012-06-07 16:22:38 +02:00
|
|
|
}
|