2021-07-21 15:17:23 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Default mobile theme
|
|
|
|
*
|
|
|
|
* @category Stylesheet
|
|
|
|
* @package Pandora FMS
|
|
|
|
* @subpackage Community
|
|
|
|
* @version 1.0.0
|
|
|
|
* @license See below
|
|
|
|
*
|
|
|
|
* ______ ___ _______ _______ ________
|
|
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
|
|
*
|
|
|
|
* ============================================================================
|
|
|
|
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
|
|
|
|
* Please see http://pandorafms.org for full contribution list
|
|
|
|
* 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 for 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.
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../../../fonts/lato.woff2") format("woff");
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
* {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-decoration: none !important;
|
|
|
|
font-size: 12px;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: white;
|
|
|
|
border-style: none;
|
|
|
|
direction: ltr;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: top;
|
2021-07-21 15:17:23 +02:00
|
|
|
font-weight: 400;
|
|
|
|
font-family: "Lato";
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
|
|
|
|
2013-04-05 15:07:03 +02:00
|
|
|
.small {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 10px !important;
|
2013-04-05 15:07:03 +02:00
|
|
|
}
|
|
|
|
|
2021-03-26 14:33:48 +01:00
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.invisible {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-03-27 Miguel de Dios <miguel.dedios@artica.es>
* mobile/operation/events.php, mobile/operation/tactical.php,
mobile/include/ui.class.php, mobile/include/style/main.css,
mobile/images/datos_blue.png, mobile/images/datos_brown.png,
mobile/images/datos_green.png, mobile/images/datos_pink.png,
mobile/images/datos_grey.png, mobile/images/datos_red.png,
mobile/images/datos_yellow.png: some fixes and changes in the
Pandora mobile.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7895 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-27 18:51:35 +01:00
|
|
|
.ui-header .ui-title {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 14px !important;
|
2013-03-27 Miguel de Dios <miguel.dedios@artica.es>
* mobile/operation/events.php, mobile/operation/tactical.php,
mobile/include/ui.class.php, mobile/include/style/main.css,
mobile/images/datos_blue.png, mobile/images/datos_brown.png,
mobile/images/datos_green.png, mobile/images/datos_pink.png,
mobile/images/datos_grey.png, mobile/images/datos_red.png,
mobile/images/datos_yellow.png: some fixes and changes in the
Pandora mobile.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7895 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-27 18:51:35 +01:00
|
|
|
}
|
2013-03-21 19:47:28 +01:00
|
|
|
|
2014-01-30 11:44:54 +01:00
|
|
|
.ui-btn-inner {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-weight: bold;
|
2013-03-27 Miguel de Dios <miguel.dedios@artica.es>
* mobile/operation/events.php, mobile/operation/tactical.php,
mobile/include/ui.class.php, mobile/include/style/main.css,
mobile/images/datos_blue.png, mobile/images/datos_brown.png,
mobile/images/datos_green.png, mobile/images/datos_pink.png,
mobile/images/datos_grey.png, mobile/images/datos_red.png,
mobile/images/datos_yellow.png: some fixes and changes in the
Pandora mobile.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7895 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-27 18:51:35 +01:00
|
|
|
}
|
2013-03-21 19:47:28 +01:00
|
|
|
|
2020-12-18 13:23:35 +01:00
|
|
|
td.flex-center {
|
|
|
|
display: flex !important;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2013-04-05 12:49:38 +02:00
|
|
|
/*INIT----------Tactical styles-----------------------------------------*/
|
2014-01-31 11:50:55 +01:00
|
|
|
/* Common */
|
2014-02-10 18:03:08 +01:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#tactical1,
|
|
|
|
#tactical2,
|
|
|
|
#agent_graphs,
|
|
|
|
#agent_details {
|
|
|
|
border-radius: 6px;
|
2014-02-10 18:03:08 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.agent_graphs,
|
|
|
|
.events_bar {
|
|
|
|
padding-top: 10px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#tactical1 *,
|
|
|
|
#tactical2 * {
|
|
|
|
font-weight: bold;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#tactical1 a,
|
|
|
|
#tactical2 a {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #222;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
legend {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-bottom: 5px;
|
2013-03-27 Miguel de Dios <miguel.dedios@artica.es>
* mobile/operation/events.php, mobile/operation/tactical.php,
mobile/include/ui.class.php, mobile/include/style/main.css,
mobile/images/datos_blue.png, mobile/images/datos_brown.png,
mobile/images/datos_green.png, mobile/images/datos_pink.png,
mobile/images/datos_grey.png, mobile/images/datos_red.png,
mobile/images/datos_yellow.png: some fixes and changes in the
Pandora mobile.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7895 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-27 18:51:35 +01:00
|
|
|
}
|
2013-03-21 19:47:28 +01:00
|
|
|
|
2014-01-22 18:29:45 +01:00
|
|
|
.ui-btn-up-c {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-weight: normal !important;
|
|
|
|
text-shadow: none !important;
|
2013-04-05 12:49:38 +02:00
|
|
|
}
|
2014-01-31 11:50:55 +01:00
|
|
|
|
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
#tactical1 *,
|
|
|
|
#tactical2 * {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
#tactical1 a,
|
|
|
|
#tactical2 a {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
2014-01-31 11:50:55 +01:00
|
|
|
}
|
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
#tactical1 a,
|
|
|
|
#tactical2 a {
|
|
|
|
font-size: 25px !important;
|
|
|
|
}
|
2014-01-31 11:50:55 +01:00
|
|
|
}
|
2013-04-05 12:49:38 +02:00
|
|
|
/*END-----------Tactical styles-----------------------------------------*/
|
|
|
|
|
2014-01-22 18:29:45 +01:00
|
|
|
#status_pie {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
2013-04-05 12:49:38 +02:00
|
|
|
|
2014-01-22 18:29:45 +01:00
|
|
|
#outter_status_pie {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
2013-04-05 12:49:38 +02:00
|
|
|
|
2013-03-21 19:47:28 +01:00
|
|
|
/*INIT----------Groups styles-----------------------------------------*/
|
2013-03-15 15:50:47 +01:00
|
|
|
.group_view tr {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-bottom: 3px solid white !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
tr.group_view_crit,
|
|
|
|
.group_view_crit {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #fa3030 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2013-03-15 15:50:47 +01:00
|
|
|
.group_view_crit * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-up-group_view_crit,
|
|
|
|
.ui-btn-hover-group_view_crit {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #f85858 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #111111;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: none;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.group_view_normal,
|
|
|
|
.group_view_normal *,
|
|
|
|
.group_view_norm,
|
|
|
|
.group_view_norm * {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #ffffff !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2013-03-15 15:50:47 +01:00
|
|
|
.group_view_norm * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2014-12-01 13:55:47 +01:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.group_view_not_init,
|
|
|
|
.group_view_not_init * {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #5ab7e5 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff !important;
|
2014-12-01 13:55:47 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-up-group_view_normal,
|
|
|
|
.ui-btn-hover-group_view_normal,
|
|
|
|
.ui-btn-up-group_view_norm,
|
|
|
|
.ui-btn-hover-group_view_norm {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #6eb432 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #111111;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: none;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.group_view_ok,
|
|
|
|
.group_view_ok * {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #00c000 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2013-03-15 15:50:47 +01:00
|
|
|
.group_view_ok * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-up-group_view_ok,
|
|
|
|
.ui-btn-hover-group_view_ok {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #6eb432 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #111111;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: none;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
tr.group_view_warn,
|
|
|
|
.group_view_warn,
|
|
|
|
tr.group_view_warn.a,
|
|
|
|
a.group_view_warn,
|
|
|
|
tr.a.group_view_warn {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #f5e535 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2013-03-15 15:50:47 +01:00
|
|
|
a.group_view_warn {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-22 18:52:29 +02:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-up-group_view_warn,
|
|
|
|
.ui-btn-hover-group_view_warn {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #ffea59 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #111;
|
|
|
|
border: 1px solid #111111;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: none;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
tr.group_view_alrm,
|
|
|
|
.group_view_alrm {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #ed8701 !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
2013-03-15 15:50:47 +01:00
|
|
|
.group_view_alrm * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-up-group_view_alrm,
|
|
|
|
.ui-btn-hover-group_view_alrm {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #f7931e !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #111111;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: none;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
tr.group_view_unk,
|
|
|
|
.group_view_unk {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #c4c4c4 !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
2013-03-15 15:50:47 +01:00
|
|
|
.group_view_unk * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-up-group_view_unk,
|
|
|
|
.ui-btn-hover-group_view_unk {
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #999999 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #111111;
|
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: none;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-btn-active:visited,
|
|
|
|
.ui-btn-active:hover,
|
|
|
|
.ui-btn-active a.ui-link-inherit {
|
|
|
|
color: #888 !important;
|
|
|
|
text-shadow: none !important;
|
2014-02-10 12:54:39 +01:00
|
|
|
}
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
tr.group_view_data,
|
|
|
|
.group_view_data {
|
|
|
|
color: #000000 !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
.group_view_data_unk * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #303030 !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
.group_view_data_ok * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #00c000 !important;
|
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: in function "print_select_groups" and function
"print_select_from_sql" added source code to check $config['text_char_long']
for show small text in this widgets.
* include/functions.php: in function "get_event_types" and "get_priorities"
added source code to check $config['text_char_long'] for show small text in
this widgets. And in function "get_priority_class" cleaned source code.
* operation/agentes/status_monitor.php, operation/events/events.php: cleaned
source code style.
* images/pandora.ico.gif: added image file for to use in the mobile footer.
* mobile/operation/agents/monitor_status.php,
mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/group_view.php, mobile/operation/events/events.php,
mobile/include/style/main.css, mobile/include/functions_web.php,
mobile/index.php, general/footer.php: continued the develop, yep the
Pandora Console Mobile is complete (only rest the bugs).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3269 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 20:02:11 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
.group_view_data_crit * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #5c0000 !important;
|
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: in function "print_select_groups" and function
"print_select_from_sql" added source code to check $config['text_char_long']
for show small text in this widgets.
* include/functions.php: in function "get_event_types" and "get_priorities"
added source code to check $config['text_char_long'] for show small text in
this widgets. And in function "get_priority_class" cleaned source code.
* operation/agentes/status_monitor.php, operation/events/events.php: cleaned
source code style.
* images/pandora.ico.gif: added image file for to use in the mobile footer.
* mobile/operation/agents/monitor_status.php,
mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/group_view.php, mobile/operation/events/events.php,
mobile/include/style/main.css, mobile/include/functions_web.php,
mobile/index.php, general/footer.php: continued the develop, yep the
Pandora Console Mobile is complete (only rest the bugs).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3269 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 20:02:11 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
.group_view_data_alrm * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #5c1d00 !important;
|
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: in function "print_select_groups" and function
"print_select_from_sql" added source code to check $config['text_char_long']
for show small text in this widgets.
* include/functions.php: in function "get_event_types" and "get_priorities"
added source code to check $config['text_char_long'] for show small text in
this widgets. And in function "get_priority_class" cleaned source code.
* operation/agentes/status_monitor.php, operation/events/events.php: cleaned
source code style.
* images/pandora.ico.gif: added image file for to use in the mobile footer.
* mobile/operation/agents/monitor_status.php,
mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/group_view.php, mobile/operation/events/events.php,
mobile/include/style/main.css, mobile/include/functions_web.php,
mobile/index.php, general/footer.php: continued the develop, yep the
Pandora Console Mobile is complete (only rest the bugs).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3269 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 20:02:11 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
.group_view_data_warn * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #5c5900 !important;
|
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: in function "print_select_groups" and function
"print_select_from_sql" added source code to check $config['text_char_long']
for show small text in this widgets.
* include/functions.php: in function "get_event_types" and "get_priorities"
added source code to check $config['text_char_long'] for show small text in
this widgets. And in function "get_priority_class" cleaned source code.
* operation/agentes/status_monitor.php, operation/events/events.php: cleaned
source code style.
* images/pandora.ico.gif: added image file for to use in the mobile footer.
* mobile/operation/agents/monitor_status.php,
mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/group_view.php, mobile/operation/events/events.php,
mobile/include/style/main.css, mobile/include/functions_web.php,
mobile/index.php, general/footer.php: continued the develop, yep the
Pandora Console Mobile is complete (only rest the bugs).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3269 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 20:02:11 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
|
|
|
|
.group_view * {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-shadow: none !important;
|
|
|
|
font-size: 12px !important;
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
}
|
2013-04-09 11:29:03 +02:00
|
|
|
|
|
|
|
.list_groups .link_count {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: inline !important;
|
2013-04-09 11:29:03 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.list_groups .number_count,
|
|
|
|
.list_groups .name_count {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2013-04-09 11:29:03 +02:00
|
|
|
}
|
2014-02-04 17:22:12 +01:00
|
|
|
|
|
|
|
.list_groups .number_count {
|
2019-01-30 12:42:16 +01:00
|
|
|
right: 10px;
|
2021-10-25 11:09:24 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.list_groups .name_count {
|
2019-01-30 12:42:16 +01:00
|
|
|
left: 10px;
|
2021-10-25 11:09:24 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.list_groups .name_count img {
|
2019-01-30 12:42:16 +01:00
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
.list_groups .name_count img {
|
2021-10-25 11:09:24 +02:00
|
|
|
margin-top: 0px;
|
2019-01-30 12:42:16 +01:00
|
|
|
}
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
.list_groups .name_count img {
|
2021-10-25 11:09:24 +02:00
|
|
|
margin-top: 0px;
|
2019-01-30 12:42:16 +01:00
|
|
|
}
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
2013-03-21 19:47:28 +01:00
|
|
|
/*END-----------Groups styles-----------------------------------------*/
|
2010-09-21 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: in function "print_select_groups" and function
"print_select_from_sql" added source code to check $config['text_char_long']
for show small text in this widgets.
* include/functions.php: in function "get_event_types" and "get_priorities"
added source code to check $config['text_char_long'] for show small text in
this widgets. And in function "get_priority_class" cleaned source code.
* operation/agentes/status_monitor.php, operation/events/events.php: cleaned
source code style.
* images/pandora.ico.gif: added image file for to use in the mobile footer.
* mobile/operation/agents/monitor_status.php,
mobile/operation/agents/view_agents.php,
mobile/operation/agents/tactical.php,
mobile/operation/agents/group_view.php, mobile/operation/events/events.php,
mobile/include/style/main.css, mobile/include/functions_web.php,
mobile/index.php, general/footer.php: continued the develop, yep the
Pandora Console Mobile is complete (only rest the bugs).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3269 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-21 20:02:11 +02:00
|
|
|
|
2013-03-21 19:47:28 +01:00
|
|
|
/*INIT----------Events styles-----------------------------------------*/
|
2019-01-30 12:42:16 +01:00
|
|
|
.datos_green,
|
|
|
|
.datos_greenf9,
|
|
|
|
.datos_green a,
|
|
|
|
.datos_greenf9 a {
|
|
|
|
background-color: #52a000;
|
|
|
|
color: #ffffff !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
|
|
|
.datos_red,
|
|
|
|
.datos_redf9,
|
|
|
|
.datos_red a,
|
|
|
|
.datos_redf9 a {
|
|
|
|
background-color: #ff3e41;
|
|
|
|
color: #ffffff !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.datos_yellow,
|
|
|
|
.datos_yellowf9,
|
|
|
|
.datos_yellow a,
|
|
|
|
.datos_yellowf9 a {
|
|
|
|
background-color: #f5e535;
|
|
|
|
color: #000000 !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
|
|
|
.datos_blue,
|
|
|
|
.datos_bluef9,
|
|
|
|
.datos_blue a,
|
|
|
|
.datos_bluef9 a {
|
|
|
|
background-color: #77e2f2;
|
|
|
|
color: #000000 !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
|
|
|
.datos_grey,
|
|
|
|
.datos_greyf9,
|
|
|
|
.datos_grey a,
|
|
|
|
.datos_greyf9 a {
|
|
|
|
background-color: #e4e4e4;
|
|
|
|
color: #000000 !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
|
|
|
.datos_pink,
|
|
|
|
.datos_pinkf9,
|
|
|
|
.datos_pink a,
|
|
|
|
.datos_pinkf9 a {
|
|
|
|
background-color: #ff92e9;
|
|
|
|
color: #000000 !important;
|
|
|
|
text-shadow: none !important;
|
|
|
|
}
|
|
|
|
.datos_brown,
|
|
|
|
.datos_brownf9,
|
|
|
|
.datos_brown a,
|
|
|
|
.datos_brownf9 a {
|
|
|
|
background-color: #c97a4a;
|
|
|
|
color: #000000 !important;
|
|
|
|
text-shadow: none !important;
|
2013-03-21 19:47:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.events {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-bottom: 6px solid #f7f7f7 !important;
|
|
|
|
font-size: 12px !important;
|
2013-03-26 18:15:49 +01:00
|
|
|
}
|
|
|
|
|
2020-12-22 17:01:49 +01:00
|
|
|
table.event_details {
|
|
|
|
height: 14px;
|
|
|
|
color: #424242;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.event_details tr th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.event_details td:not(:first-child) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-items: start;
|
|
|
|
}
|
|
|
|
|
2013-03-26 18:15:49 +01:00
|
|
|
table#list_events th {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 12px !important;
|
|
|
|
font-weight: bolder !important;
|
|
|
|
border: 0px;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2014-01-31 11:50:55 +01:00
|
|
|
div.graph {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin: 0 auto;
|
2014-01-31 11:50:55 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
table.alternate tr:nth-child(odd) td,
|
|
|
|
table.alternate tr:nth-child(odd) th {
|
|
|
|
background-color: #ffffff;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
table.alternate tr:nth-child(even) td,
|
|
|
|
table.alternate tr:nth-child(eveny) th {
|
|
|
|
background-color: #e4e5e4;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table.pandora_responsive {
|
2019-01-30 12:42:16 +01:00
|
|
|
width: 100%;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
table.pandora_responsive td,
|
|
|
|
table.pandora_responsive th {
|
|
|
|
padding: 4px;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
table.event_details img {
|
|
|
|
margin-left: 4px;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
table.event_details td {
|
|
|
|
height: 14px;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table.event_details td.cell_event_name {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 14px;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#validate_button {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin: 10px auto;
|
2021-10-25 11:09:24 +02:00
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 40px;
|
2013-03-21 19:47:28 +01:00
|
|
|
}
|
2013-04-01 16:25:08 +02:00
|
|
|
|
2013-04-01 18:27:19 +02:00
|
|
|
@media screen and (max-width: 35em) {
|
2019-01-30 12:42:16 +01:00
|
|
|
/* Hide the title of event name */
|
|
|
|
#list_events tbody tr.events td.cell_0 b.ui-table-cell-label {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-04-01 18:27:19 +02:00
|
|
|
}
|
|
|
|
|
2013-03-21 19:47:28 +01:00
|
|
|
/*END-----------Events styles-----------------------------------------*/
|
|
|
|
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
/*INIT-----------Agents styles----------------------------------------*/
|
2019-01-30 12:42:16 +01:00
|
|
|
.red,
|
|
|
|
.redb,
|
|
|
|
.redi,
|
|
|
|
.error {
|
|
|
|
background: #f85858 !important;
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #6eb432 !important;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.orange {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #ff8800 !important;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.yellow {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #ffea59 !important;
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.grey {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #aaaaaa !important;
|
|
|
|
font-weight: bold;
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
}
|
2013-04-02 18:15:59 +02:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.green,
|
|
|
|
.orange,
|
|
|
|
.yellow,
|
|
|
|
.red,
|
|
|
|
.grey,
|
|
|
|
.agents_tiny_stats span {
|
|
|
|
text-shadow: none;
|
|
|
|
color: white !important;
|
|
|
|
padding: 1px 3px;
|
|
|
|
border-radius: 2px;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.agents_tiny_stats span {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #222;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
2014-01-31 11:50:55 +01:00
|
|
|
.agent_details {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding: 10px 0px 10px 0px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
.agent_details > img {
|
2019-01-30 12:42:16 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
width: 20px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
.agent_os {
|
|
|
|
float: right;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
padding: 10px;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:06:17 +01:00
|
|
|
.agent_list_ips {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding: 10px 0px 10px 0px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
.agent_list_ips > img {
|
2019-01-30 12:42:16 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
width: 20px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
.agent_last_contact {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding: 10px 0px 10px 0px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
.agent_description {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding: 10px 0px 10px 0px;
|
2014-01-31 11:50:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.agent_name {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 14px;
|
2014-01-31 11:50:55 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
|
2014-02-04 17:22:12 +01:00
|
|
|
#list_agents .cell_0 img {
|
2019-01-30 12:42:16 +01:00
|
|
|
float: left;
|
|
|
|
margin-right: 3px;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_agents td:hover,
|
|
|
|
#list_networkmaps td:hover,
|
|
|
|
#list_events td:hover,
|
|
|
|
#list_Modules td:hover,
|
|
|
|
#list_agent_Modules td:hover,
|
|
|
|
#list_visualmaps td:hover,
|
|
|
|
#last_agent_events td:hover {
|
|
|
|
cursor: pointer;
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
2014-02-04 17:22:12 +01:00
|
|
|
#list_agents td {
|
2019-01-30 12:42:16 +01:00
|
|
|
height: 25px;
|
|
|
|
padding-top: 10px;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
2014-01-31 11:50:55 +01:00
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
.agents_tiny_stats_tactical {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:06:17 +01:00
|
|
|
@media screen and (max-width: 34.99em) {
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_agents td {
|
|
|
|
height: 35px;
|
|
|
|
padding-top: 7px;
|
|
|
|
display: table-cell;
|
|
|
|
clear: none;
|
|
|
|
float: none;
|
|
|
|
padding-left: 0px !important;
|
|
|
|
padding-right: 0px !important;
|
|
|
|
width: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents td.cell_0 {
|
|
|
|
border-top: 0px none;
|
|
|
|
}
|
|
|
|
#list_agents td.cell_0 > span.tiny > img {
|
|
|
|
width: 5px;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: -6px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_2 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_3 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_6 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_4 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_5 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_8 .ui-table-cell-label {
|
|
|
|
min-width: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_3 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_6 .ui-table-cell-label,
|
|
|
|
#list_agents .cell_7 .ui-table-cell-label {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_2,
|
|
|
|
#list_agents .cell_3,
|
|
|
|
#list_agents .cell_7 {
|
|
|
|
display: inline !important;
|
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_4,
|
|
|
|
#list_agents .cell_8 {
|
|
|
|
display: inline !important;
|
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_8 {
|
|
|
|
display: inline !important;
|
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents b.ui-table-cell-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .show_collapside {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_1,
|
|
|
|
#list_agents .cell_2,
|
|
|
|
#list_agents .cell_3,
|
|
|
|
#list_agents .cell_4 {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_0 .ui-link {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agents .cell_6 .show_collapside {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agents_tiny_stats * {
|
|
|
|
font-size: 12px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_agent_Modules td {
|
|
|
|
padding-top: 7px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agents_tiny_stats {
|
|
|
|
float: right;
|
|
|
|
}
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
.agents_tiny_stats * {
|
|
|
|
font-size: 12px !important;
|
|
|
|
}
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
.agents_tiny_stats * {
|
|
|
|
font-size: 17px !important;
|
|
|
|
}
|
2013-04-02 18:15:59 +02:00
|
|
|
}
|
2013-03-26 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php, include/functions_groups.php:
changes for to use in the calls in mobile version.
* mobile/index.php, mobile/operation/events.php,
mobile/operation/modules.php, mobile/operation/events,
mobile/operation/events/events.php, mobile/operation/agents.php,
mobile/operation/tactical.php, mobile/operation/alerts.php,
mobile/include/style/main.css, mobile/include/ui.class.php,
mobile/include/user.class.php: changes and improves in the code
of mobile.
* mobile/operation/agents/*, mobile/operation/servers/*: removed
the old files from version pandora mobile 4.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-03-26 18:24:10 +01:00
|
|
|
/*END-----------Agents styles-----------------------------------------*/
|
2013-03-21 19:47:28 +01:00
|
|
|
|
2014-02-05 17:38:05 +01:00
|
|
|
/*INIT-----------Alerts styles---------------------------------------*/
|
|
|
|
|
|
|
|
#list_alerts td {
|
2019-01-30 12:42:16 +01:00
|
|
|
height: 35px;
|
|
|
|
padding-top: 20px;
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*END-----------Alerts styles---------------------------------------*/
|
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
/*INIT-----------Network maps styles---------------------------------------*/
|
2014-02-05 17:38:05 +01:00
|
|
|
|
|
|
|
#list_networkmaps td {
|
2019-01-30 12:42:16 +01:00
|
|
|
height: 35px;
|
|
|
|
padding-top: 20px;
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
/*END-----------Network maps styles---------------------------------------*/
|
|
|
|
|
|
|
|
/*INIT-----------Visual maps styles---------------------------------------*/
|
|
|
|
|
|
|
|
#list_visualmaps td {
|
2019-01-30 12:42:16 +01:00
|
|
|
height: 35px;
|
|
|
|
padding-top: 20px;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
2014-02-05 17:38:05 +01:00
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
#rendered_visual_map div {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #003a3a;
|
|
|
|
text-shadow: none !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
2014-02-05 17:38:05 +01:00
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
#rendered_visual_map {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-align: center;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
#rendered_visual_map div {
|
|
|
|
font-size: 6pt !important;
|
|
|
|
}
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
#rendered_visual_map div {
|
|
|
|
font-size: 8pt !important;
|
|
|
|
}
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
.resize_visual_font_size_4pt * {
|
|
|
|
font-size: 2pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_6pt * {
|
|
|
|
font-size: 3pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_8pt * {
|
|
|
|
font-size: 4pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_14pt * {
|
|
|
|
font-size: 6pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_24pt * {
|
|
|
|
font-size: 10pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_36pt * {
|
|
|
|
font-size: 14pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_72pt * {
|
|
|
|
font-size: 27pt !important;
|
|
|
|
}
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
.resize_visual_font_size_4pt * {
|
|
|
|
font-size: 2pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_6pt * {
|
|
|
|
font-size: 3pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_8pt * {
|
|
|
|
font-size: 4pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_14pt * {
|
|
|
|
font-size: 7pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_24pt * {
|
|
|
|
font-size: 12pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_36pt * {
|
|
|
|
font-size: 18pt !important;
|
|
|
|
}
|
|
|
|
.resize_visual_font_size_72pt * {
|
|
|
|
font-size: 36pt !important;
|
|
|
|
}
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*END-----------Visual maps styles---------------------------------------*/
|
2014-02-05 17:38:05 +01:00
|
|
|
|
2013-04-02 18:43:32 +02:00
|
|
|
/*INIT-----------Modules styles---------------------------------------*/
|
2017-02-13 16:06:17 +01:00
|
|
|
@media screen and (max-width: 34.99em) {
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_Modules .cell_1 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_5 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_6 .ui-table-cell-label {
|
|
|
|
min-width: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_5 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_6 .ui-table-cell-label {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_0 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_1 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_3 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_4 .ui-table-cell-label,
|
|
|
|
#list_Modules .cell_5 .ui-table-cell-label {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules td {
|
|
|
|
height: 35px;
|
|
|
|
padding-top: 7px;
|
|
|
|
display: table-cell;
|
|
|
|
clear: none;
|
|
|
|
float: none;
|
|
|
|
padding-left: 0px !important;
|
|
|
|
padding-right: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .show_collapside {
|
|
|
|
display: inline !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .data {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_1,
|
|
|
|
#list_Modules .cell_2,
|
|
|
|
#list_Modules .cell_3 {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_0 .show_collapside,
|
|
|
|
#list_Modules .cell_1 .show_collapside,
|
|
|
|
#list_Modules .cell_4 .show_collapside,
|
|
|
|
#list_Modules .cell_5 .show_collapside {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_0 .ui-link {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_0 {
|
|
|
|
width: 50%;
|
|
|
|
border-top: 0px none;
|
|
|
|
}
|
|
|
|
#list_Modules .cell_4 {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
#list_Modules .cell_5 {
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules td.cell_0 > span.tiny > img {
|
|
|
|
width: 5px;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: -5px;
|
|
|
|
margin-left: 0px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
#list_Modules .module_name {
|
|
|
|
font-size: 12px !important;
|
|
|
|
}
|
2013-04-08 13:08:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#list_Modules .cell_5 a {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #000000 !important;
|
2013-04-02 18:43:32 +02:00
|
|
|
}
|
2013-06-03 18:28:26 +02:00
|
|
|
|
2014-01-31 11:50:55 +01:00
|
|
|
#list_Modules .module_name {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 15px;
|
|
|
|
font-weight: bold;
|
2014-01-31 11:50:55 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_Modules td,
|
|
|
|
#list_agent_Modules td {
|
|
|
|
height: 35px;
|
|
|
|
padding-top: 20px;
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:06:17 +01:00
|
|
|
#list_agent_Modules td.cell_0 > span.tiny {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: none;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
|
2014-02-05 17:38:05 +01:00
|
|
|
#list_Modules .cell_5 img {
|
2019-01-30 12:42:16 +01:00
|
|
|
float: left;
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
2014-02-11 11:37:30 +01:00
|
|
|
#user_logged {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: absolute;
|
|
|
|
font-size: 11px !important;
|
|
|
|
right: 10px;
|
|
|
|
top: 8px;
|
|
|
|
background: url(../../../images/header_user.png) no-repeat right;
|
|
|
|
padding-right: 20px;
|
|
|
|
line-height: 20px;
|
2014-02-11 11:37:30 +01:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:06:17 +01:00
|
|
|
@media screen and (max-width: 34.99em) {
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_agent_Modules .ui-table-cell-label,
|
|
|
|
#list_agent_Modules .cell_2,
|
|
|
|
#list_agent_Modules .cell_3 {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-06-03 18:28:26 +02:00
|
|
|
}
|
2013-04-24 14:36:32 +02:00
|
|
|
|
2013-04-02 18:43:32 +02:00
|
|
|
/*END------------Modules styles---------------------------------------*/
|
|
|
|
|
2013-03-21 19:47:28 +01:00
|
|
|
/*INIT---------Fix the square border in search input------------------*/
|
2013-03-15 15:50:47 +01:00
|
|
|
.ui-input-search {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-radius: 0.6em 0.6em 0.6em 0.6em !important;
|
2010-09-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: in function "get_agent_module_info" added
the return "status" and "alert_value".
* include/auth/mysql.php: in function "process_user_login" cleaned the
source code style.
* include/functions_ui.php: in function "print_timestamp" added in the
parameter $option the check of units ('large' and 'tiny' at the moment).
Added the function "print_group_icon2" that it is the same of
"print_group_icon" but it has a new parameter $path for to set the images
path.
* include/functions.php: in function "human_time_comparation" added the
parameter $units to set the type return text for time unit (at the moment
only "large" and "tiny"). And in the function "human_time_description_raw"
added the paramter $units for to set the type of return text for units, at
the moment only "large" and "tiny".
* include/functions_db.php, operation/agentes/ver_agente.php: cleaned source
code.
* mobile/index.php, mobile/operation/agents,
mobile/operation/agents/view_agents.php, mobile/include/db.class.php,
mobile/include/style, mobile/include/style/main.css,
mobile/include/user.class.php, mobile/include/functions_web.php,
mobile/include/system.class.php, mobile/images/bricks.png,
mobile/images/up.png, mobile/images/zoom.png, mobile/images/down.png: added
first version of file for Pandora Mobile version.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3246 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-09-15 17:54:59 +02:00
|
|
|
}
|
|
|
|
|
2013-03-15 15:50:47 +01:00
|
|
|
.ui-select {
|
2019-01-30 12:42:16 +01:00
|
|
|
width: 100% !important;
|
2013-03-21 19:47:28 +01:00
|
|
|
}
|
|
|
|
/*END----------Fix the square border in search input------------------*/
|
|
|
|
|
2014-02-04 17:22:12 +01:00
|
|
|
ul.ui-listview li.ui-btn div.ui-btn-inner div.ui-btn-text a {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-left: 5px;
|
2013-04-02 15:44:48 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 12:54:39 +01:00
|
|
|
.ui-btn-inner {
|
2019-01-30 12:42:16 +01:00
|
|
|
border: 0px solid #000 !important;
|
2014-02-10 12:54:39 +01:00
|
|
|
}
|
|
|
|
|
2013-07-08 12:59:07 +02:00
|
|
|
li.ui-btn {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-bottom: 4px !important;
|
|
|
|
margin-top: 4px !important;
|
2013-07-08 12:59:07 +02:00
|
|
|
}
|
2013-04-02 15:44:48 +02:00
|
|
|
|
2013-04-01 18:27:19 +02:00
|
|
|
/*INIT---------Fix the tons of air between the rows in small table----*/
|
|
|
|
.head_vertical {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-top: 0px !important;
|
|
|
|
border-top: 1px solid grey;
|
2013-04-01 18:27:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.head_horizontal {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-bottom: 1px solid grey !important;
|
2013-04-01 18:27:19 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 15:16:04 +01:00
|
|
|
#list_events .head_horizontal {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-bottom: 0px solid white !important;
|
2014-02-10 15:16:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.cell_0 {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-top: solid 1px #666;
|
|
|
|
margin-top: 0px;
|
2014-02-10 15:16:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#list_events .cell_0 {
|
2019-01-30 12:42:16 +01:00
|
|
|
border: 0px;
|
2014-02-10 15:16:04 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 18:03:08 +01:00
|
|
|
/* Hack to align table titles in mobile mode */
|
|
|
|
.ui-table-cell-label {
|
2019-01-30 12:42:16 +01:00
|
|
|
float: left;
|
2014-02-10 18:03:08 +01:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:06:17 +01:00
|
|
|
@media screen and (max-width: 34.99em) {
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-table th,
|
|
|
|
.ui-table td {
|
|
|
|
padding: 8px !important;
|
|
|
|
padding-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.head_vertical {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2013-04-01 18:27:19 +02:00
|
|
|
}
|
|
|
|
/*END----------Fix the tons of air between the rows in small table----*/
|
|
|
|
|
2013-03-21 19:47:28 +01:00
|
|
|
/*INIT---------Fix to avoid clicks under loading message--------------*/
|
|
|
|
.ui-loader-background {
|
2019-01-30 12:42:16 +01:00
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
top: 0 !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
background: rgba(0, 0, 0, 0.3) !important;
|
|
|
|
display: none !important;
|
|
|
|
position: fixed !important;
|
|
|
|
z-index: 100 !important;
|
2013-03-21 19:47:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui-loading .ui-loader-background {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: block !important;
|
2013-03-21 19:47:28 +01:00
|
|
|
}
|
2013-11-22 14:24:28 +01:00
|
|
|
/*END----------Fix to avoid clicks under loading message--------------*/
|
|
|
|
|
|
|
|
.button_layer {
|
2019-01-30 12:42:16 +01:00
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
padding-right: 60px;
|
|
|
|
height: 30px;
|
2013-11-22 14:24:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui-icon-big {
|
2019-01-30 12:42:16 +01:00
|
|
|
width: 28px !important;
|
|
|
|
height: 28px !important;
|
2013-11-22 14:24:28 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 35em) {
|
|
|
|
.events .status_row {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.events .cell_0 a.event_name {
|
|
|
|
width: 87%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.events_agent {
|
|
|
|
min-width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agents_last_contact {
|
|
|
|
float: right;
|
|
|
|
}
|
2013-11-26 14:08:27 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 35em) {
|
|
|
|
.events .cell_0 .event_link {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.events td {
|
|
|
|
height: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.events_agent {
|
|
|
|
float: left;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
2013-11-27 17:54:53 +01:00
|
|
|
}
|
|
|
|
|
2014-02-04 17:22:12 +01:00
|
|
|
/* Common */
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-li > .ui-btn-inner {
|
|
|
|
background: white;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.groups_sublist li {
|
2019-01-30 12:42:16 +01:00
|
|
|
border-radius: 0px;
|
2021-10-25 11:09:24 +02:00
|
|
|
margin-top: 5px !important;
|
|
|
|
margin-bottom: 5px !important;
|
2014-02-04 17:22:12 +01:00
|
|
|
}
|
|
|
|
|
2021-03-26 11:55:44 +01:00
|
|
|
.center {
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-01-22 18:29:45 +01:00
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
.ui-content > .ui-btn {
|
|
|
|
margin: 10px 7px;
|
|
|
|
height: 30px;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
label,
|
|
|
|
input,
|
|
|
|
.ui-btn-inner {
|
|
|
|
font-size: 12px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list_groups .ui-btn-inner {
|
|
|
|
padding-top: 15px !important;
|
|
|
|
height: 20px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login_logo img {
|
|
|
|
width: 220px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding-top: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.untiny {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
2013-12-17 13:05:50 +01:00
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
.ui-content > .ui-btn {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 8px 5px;
|
|
|
|
height: 40px;
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
label,
|
|
|
|
input,
|
|
|
|
.ui-btn-inner {
|
|
|
|
font-size: 16px !important;
|
|
|
|
padding-top: 6px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list_groups .ui-btn-inner {
|
|
|
|
padding-top: 20px !important;
|
|
|
|
height: 35px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-header .ui-title {
|
|
|
|
font-size: 18px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-size: 18px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event_name {
|
|
|
|
font-size: 15px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login_logo img {
|
|
|
|
width: 300px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding-top: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tiny {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-12-17 13:05:50 +01:00
|
|
|
}
|
|
|
|
|
2014-01-30 11:44:54 +01:00
|
|
|
#login_container {
|
2019-01-30 12:42:16 +01:00
|
|
|
width: 60%;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 300px;
|
|
|
|
padding-top: 5%;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2014-01-31 11:50:55 +01:00
|
|
|
.event_name {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#login_container #login_btn-container {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-top: 30px;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#login_container input,
|
|
|
|
#login_container .ui-btn-text {
|
|
|
|
font-size: 16px !important;
|
2014-01-30 11:44:54 +01:00
|
|
|
}
|
|
|
|
|
2014-01-22 18:29:45 +01:00
|
|
|
table.tactical_bars {
|
2019-01-30 12:42:16 +01:00
|
|
|
width: 100%;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tactical_bar {
|
2019-01-30 12:42:16 +01:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 4px;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-bar,
|
|
|
|
.ui-body {
|
|
|
|
margin: 5px;
|
2014-01-22 18:29:45 +01:00
|
|
|
}
|
|
|
|
|
2013-11-27 17:54:53 +01:00
|
|
|
.events .cell_0 img {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-right: 5px;
|
2013-11-26 14:08:27 +01:00
|
|
|
}
|
|
|
|
|
2014-02-05 17:38:05 +01:00
|
|
|
.cell_0 {
|
2019-01-30 12:42:16 +01:00
|
|
|
max-width: 500px;
|
2014-02-05 17:38:05 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 14:08:27 +01:00
|
|
|
.cell_event_name {
|
2019-01-30 12:42:16 +01:00
|
|
|
padding-bottom: 10px;
|
|
|
|
font-weight: bold;
|
2013-11-26 14:08:27 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
/*INIT-----------Icons styles--------------------------------------- 1.3.1*/
|
2014-02-06 18:39:39 +01:00
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-tactical_view:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/op_monitoring.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-position: unset !important;
|
|
|
|
background-color: #333 !important;
|
|
|
|
background-size: 21px 21px !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-events:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/op_events.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-position: unset !important;
|
|
|
|
background-color: #333 !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-groups:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/group.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #333 !important;
|
|
|
|
background-size: 20px 20px !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-alerts:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/op_alerts.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-position: unset !important;
|
|
|
|
background-color: #333 !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-agents:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/agent_mc.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-position: unset !important;
|
|
|
|
background-color: #333 !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-modules:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/brick.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #333 !important;
|
|
|
|
background-size: 20px 20px !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-network_maps:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/op_network.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-position: unset !important;
|
|
|
|
background-color: #333 !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-visual_console:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/visual_console.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-color: #333 !important;
|
|
|
|
background-size: 20px 20px !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-10-25 11:09:24 +02:00
|
|
|
.ui-icon-dashboard:after {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-image: url(../../../images/dashboard.menu.png) !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
background-position: unset !important;
|
|
|
|
background-color: #333 !important;
|
2016-10-24 11:58:19 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
.ui-icon-tactical_view,
|
|
|
|
.ui-icon-events,
|
|
|
|
.ui-icon-groups,
|
|
|
|
.ui-icon-alerts,
|
|
|
|
.ui-icon-agents,
|
|
|
|
.ui-icon-modules,
|
|
|
|
.ui-icon-network_maps,
|
|
|
|
.ui-icon-visual_console,
|
2016-10-24 11:58:19 +02:00
|
|
|
.ui-icon-dashboard {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-position: center;
|
|
|
|
border-radius: 15px !important;
|
|
|
|
-webkit-border-radius: 15px !important;
|
2021-10-25 11:09:24 +02:00
|
|
|
display: flex !important;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 5px !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 18:17:08 +02:00
|
|
|
.ui-header.ui-bar-a .ui-btn-icon-notext .ui-btn-inner .ui-icon {
|
|
|
|
margin-top: -3px;
|
|
|
|
margin-left: 3.5px;
|
|
|
|
}
|
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
#login_btn-container .ui-icon {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #333 !important;
|
|
|
|
border-radius: 15px !important;
|
|
|
|
-webkit-border-radius: 15px !important;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* For mobiles */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (max-width: 750px) {
|
|
|
|
.ui-icon-tactical_view,
|
|
|
|
.ui-icon-events,
|
|
|
|
.ui-icon-groups,
|
|
|
|
.ui-icon-alerts,
|
|
|
|
.ui-icon-agents,
|
|
|
|
.ui-icon-modules,
|
|
|
|
.ui-icon-network_maps,
|
|
|
|
.ui-icon-visual_console,
|
|
|
|
.ui-icon-dashboard {
|
2021-10-25 11:09:24 +02:00
|
|
|
height: 28px !important;
|
|
|
|
margin-top: 0px !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
}
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
/* For tablets */
|
2019-01-30 12:42:16 +01:00
|
|
|
@media screen and (min-width: 750px) {
|
|
|
|
.ui-icon-tactical_view,
|
|
|
|
.ui-icon-events,
|
|
|
|
.ui-icon-groups,
|
|
|
|
.ui-icon-alerts,
|
|
|
|
.ui-icon-agents,
|
|
|
|
.ui-icon-modules,
|
|
|
|
.ui-icon-network_maps,
|
|
|
|
.ui-icon-visual_console,
|
|
|
|
.ui-icon-dashboard {
|
|
|
|
height: 32px !important;
|
|
|
|
}
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*END-----------Network maps styles---------------------------------------*/
|
|
|
|
|
|
|
|
#logout_dialog-button_close {
|
2021-10-25 11:09:24 +02:00
|
|
|
display: flex;
|
2019-01-30 12:42:16 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 20px;
|
2021-10-25 11:09:24 +02:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2014-02-06 18:39:39 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 12:54:39 +01:00
|
|
|
.ui-btn-active * {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff !important;
|
2014-02-10 12:54:39 +01:00
|
|
|
}
|
|
|
|
|
2014-02-06 18:39:39 +01:00
|
|
|
.ui-btn-active {
|
2019-01-30 12:42:16 +01:00
|
|
|
background: #82b92e !important;
|
2013-11-26 14:08:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
span.nobold * {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-weight: normal;
|
2013-11-22 14:24:28 +01:00
|
|
|
}
|
2013-11-27 17:54:53 +01:00
|
|
|
|
|
|
|
.events_timestamp {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 10px;
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
line-height: 1.1em;
|
2013-11-27 17:54:53 +01:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:06:17 +01:00
|
|
|
.events_timestamp > img {
|
2019-01-30 12:42:16 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 10px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
|
|
|
|
2013-11-27 17:54:53 +01:00
|
|
|
.events_agent {
|
2019-01-30 12:42:16 +01:00
|
|
|
float: left;
|
2013-11-27 17:54:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.events_agent b.ui-table-cell-label {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: block !important;
|
2013-11-27 17:54:53 +01:00
|
|
|
}
|
2013-11-28 17:54:18 +01:00
|
|
|
|
2020-12-22 17:04:29 +01:00
|
|
|
.status_rounded_rectangles.forced_title {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:09:21 +01:00
|
|
|
.ui-content .ui-listview,
|
|
|
|
.ui-panel-inner > .ui-listview {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_Modules *,
|
|
|
|
#list_agent_Modules *,
|
|
|
|
#list_agents *,
|
|
|
|
#list_alerts *,
|
|
|
|
#list_networkmaps *,
|
|
|
|
#list_visualmaps * {
|
|
|
|
color: #222;
|
2013-11-28 17:54:18 +01:00
|
|
|
}
|
2013-12-05 15:45:39 +01:00
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
div.legend > div {
|
|
|
|
width: 100% !important;
|
|
|
|
opacity: 0.65 !important;
|
2013-12-05 15:45:39 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
div.nodata_text {
|
|
|
|
padding: 5px 12px 0px 68px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #c1c1c1;
|
|
|
|
text-transform: uppercase;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 14px !important;
|
2013-12-05 15:45:39 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:42:16 +01:00
|
|
|
div.nodata_container {
|
|
|
|
width: 150px;
|
|
|
|
height: 100px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
margin: 15px auto;
|
|
|
|
display: table;
|
2013-12-05 15:45:39 +01:00
|
|
|
}
|
2013-12-17 09:18:54 +01:00
|
|
|
|
2014-02-10 14:05:24 +01:00
|
|
|
#free_search-container a {
|
2019-01-30 12:42:16 +01:00
|
|
|
margin-right: 2px;
|
|
|
|
margin-top: -12px;
|
2014-02-10 14:05:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#free_search-container span.ui-btn-inner {
|
2019-01-30 12:42:16 +01:00
|
|
|
height: 7px;
|
2014-02-10 14:05:24 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 18:08:23 +01:00
|
|
|
.ui-icon-delete {
|
2021-04-07 18:17:08 +02:00
|
|
|
margin-top: -3px;
|
2014-02-10 18:08:23 +01:00
|
|
|
}
|
2014-02-11 11:37:30 +01:00
|
|
|
|
|
|
|
.empty_advice {
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #ff0000;
|
|
|
|
margin-top: 5px !important;
|
2014-02-11 11:37:30 +01:00
|
|
|
}
|
|
|
|
|
2013-12-17 09:18:54 +01:00
|
|
|
/* JQuery Mobile responsive hack to tables with */
|
|
|
|
.ui-table-reflow.ui-responsive {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: table !important;
|
2013-12-17 09:18:54 +01:00
|
|
|
}
|
2017-02-13 16:06:17 +01:00
|
|
|
|
|
|
|
.widget_agent_module > th {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #373737;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
2017-02-16 08:37:24 +01:00
|
|
|
#list_agent_Modules > tbody > tr > td {
|
2019-01-30 12:42:16 +01:00
|
|
|
clear: none;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 0px;
|
2017-02-13 16:06:17 +01:00
|
|
|
}
|
2019-01-30 12:42:16 +01:00
|
|
|
#list_agent_Modules > tbody > tr > td.cell_0 {
|
|
|
|
border-top: 0px none;
|
2017-02-16 08:37:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.legend_graph td.legendLabel > div {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 12px !important;
|
2017-02-16 08:37:24 +01:00
|
|
|
}
|
|
|
|
.legend_graph td.legendLabel {
|
2019-01-30 12:42:16 +01:00
|
|
|
font-size: 12px !important;
|
2018-11-23 12:47:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ui-popup-hidden {
|
2019-01-30 12:42:16 +01:00
|
|
|
display: none;
|
2018-11-23 12:47:00 +01:00
|
|
|
}
|
2021-10-25 11:09:24 +02:00
|
|
|
|
|
|
|
.ui-collapsible-inset.ui-collapsible-themed-content .ui-collapsible-content {
|
|
|
|
border-width: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-listview > .ui-li-static,
|
|
|
|
.ui-listview > .ui-li-divider,
|
|
|
|
.ui-listview > li > a.ui-btn {
|
|
|
|
border-width: 0 !important;
|
|
|
|
}
|