2015-08-19 13:16:33 +02:00
|
|
|
/*
|
2009-03-02 Esteban Sanchez <estebans@artica.es>
* include/functions_menu.php: Added to repository. Functions for menu.
* operation/menu.php, godmode/menu.php: Added class to menu due to
changes in print_menu().
* general/main_menu.php: temp_print_menu() moved to functions_menu.php
* include/functions_themes.php: Added to repository. Implement
functions relative to themes (only CSS themes list at this moment).
* include/styles/pandora.css, include/styles/pandora_black.css,
include/styles/pandora_minimal.css, include/styles/pandora_red.css:
Added author, name and description comments to adopt to new
get_themes() interface.
* include/styles/pandora_width.css: Improved and make lighter by
simply rewrite some classes.
* include/functions.php: Added is_ajax().
* godmode/agentes/module_manager_editor.php,
godmode/alerts/alert_actions.php, godmode/alerts/alert_commands.php,
godmode/alerts/alert_compounds.php, godmode/alerts/alert_list.php,
godmode/alerts/alert_templates.php, godmode/groups/group_list.php,
godmode/reporting/map_builder.php,
godmode/reporting/reporting_builder.php,
operation/agentes/estado_agente.php, operation/agentes/ver_agente.php,
operation/events/events.php, operation/messages/message.php: Use
is_ajax()
* godmode/setup/setup.php: Use enterprise_include() instead of manual
checking. Use get_css_themes() to show the theme list.
* include/styles/common.css: Added to repository. Minimal styles to
make pandora works and common with all the CSS themes.
* include/functions_ui.php: Added common.css file.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1496 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-03-02 14:43:15 +01:00
|
|
|
|
|
|
|
Author: The Pandora FMS team
|
2015-08-19 13:16:33 +02:00
|
|
|
Name: Black theme
|
|
|
|
Description: The default Pandora FMS theme layout
|
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
|
|
|
|
2015-08-19 13:16:33 +02:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==========================================================
|
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
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; version 2
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2008-07-10 13:58:40 +02:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
/* General styles */
|
2019-07-02 13:12:05 +02:00
|
|
|
body,
|
2019-07-01 16:57:33 +02:00
|
|
|
div#page,
|
|
|
|
#menu_tab_frame,
|
|
|
|
#menu_tab_frame_view,
|
|
|
|
#menu_tab_frame_view_bc,
|
2019-09-10 10:26:28 +02:00
|
|
|
ul.subsubmenu li,
|
2019-07-01 16:57:33 +02:00
|
|
|
input.search_input,
|
|
|
|
.filters input,
|
|
|
|
input#text-id_parent.ac_input,
|
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
select,
|
|
|
|
.edit_user_comments #textarea_comments,
|
2021-03-11 15:40:23 +01:00
|
|
|
.discovery_textarea_input,
|
|
|
|
.selection {
|
2019-07-01 16:57:33 +02:00
|
|
|
background-color: #111;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
div#head,
|
2019-01-30 12:42:16 +01:00
|
|
|
#menu_tab li.nomn_high,
|
2019-07-01 16:57:33 +02:00
|
|
|
#menu_tab li.nomn_high span,
|
|
|
|
.white_table_graph_header,
|
|
|
|
.white-box-content,
|
|
|
|
fieldset,
|
|
|
|
.databox.filters,
|
|
|
|
table.databox,
|
|
|
|
.legend_basic,
|
|
|
|
.databox_color,
|
2021-03-11 15:40:23 +01:00
|
|
|
.white_box,
|
|
|
|
input.sub,
|
|
|
|
.introjs-tooltip,
|
|
|
|
button.sub {
|
2019-07-01 16:57:33 +02:00
|
|
|
background-color: #222 !important;
|
2019-01-30 12:42:16 +01:00
|
|
|
color: #fff;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-09 15:03:38 +02:00
|
|
|
input[readonly] {
|
|
|
|
background-color: #444 !important;
|
|
|
|
color: #a2a2a2 !important;
|
|
|
|
}
|
|
|
|
|
2021-03-11 15:40:23 +01:00
|
|
|
.switch_radio_button label {
|
|
|
|
background-color: #111;
|
|
|
|
color: white;
|
|
|
|
line-height: 1;
|
|
|
|
text-align: center;
|
|
|
|
padding: 7px 14px;
|
|
|
|
margin-right: -1px;
|
|
|
|
border: 1px solid #cbcbcb;
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
.box-shadow {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
select:disabled,
|
|
|
|
textarea:disabled {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status_tactical,
|
|
|
|
.tactical_set,
|
|
|
|
.td-bg-white td,
|
|
|
|
#top_btn:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agent_details_col,
|
|
|
|
.white_table,
|
|
|
|
.white_table tr:first-child > th,
|
|
|
|
.white_table_graph_content {
|
|
|
|
background-color: #222;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notify,
|
|
|
|
.notify h3 {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sort_arrow img {
|
2021-03-11 15:40:23 +01:00
|
|
|
filter: brightness(4.5) contrast(3.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.default_container {
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #222;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
margin-bottom: 4px;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-09 15:03:38 +02:00
|
|
|
table.widget_list tr.datos,
|
|
|
|
table.widget_list tr.datos2,
|
|
|
|
table.widget_list td.datos,
|
|
|
|
table.widget_list td.datos2 {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2019-09-10 10:26:28 +02:00
|
|
|
/* Change inputs with autocomplete */
|
|
|
|
input:-webkit-autofill,
|
|
|
|
input:-webkit-autofill:hover,
|
|
|
|
input:-webkit-autofill:focus,
|
|
|
|
input:-webkit-autofill:active {
|
|
|
|
-webkit-box-shadow: 0 0 0 30px #111 inset !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:-webkit-autofill {
|
|
|
|
-webkit-text-fill-color: #fff !important;
|
|
|
|
}
|
|
|
|
|
2019-07-09 15:03:38 +02:00
|
|
|
/* messages */
|
2021-03-11 15:40:23 +01:00
|
|
|
.container,
|
|
|
|
input.pure_full {
|
2019-07-09 15:03:38 +02:00
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-slider {
|
|
|
|
background-color: #888;
|
|
|
|
}
|
|
|
|
|
2021-03-11 15:40:23 +01:00
|
|
|
.fileupload_form,
|
|
|
|
#button-pure {
|
2019-07-09 17:36:40 +02:00
|
|
|
background-color: #222 !important;
|
2019-07-09 16:45:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#drop_file {
|
2019-07-09 17:36:40 +02:00
|
|
|
background-color: #444 !important;
|
|
|
|
color: #fff !important;
|
2019-07-09 16:45:00 +02:00
|
|
|
}
|
|
|
|
|
2019-07-09 15:03:38 +02:00
|
|
|
ol.steps li.current {
|
|
|
|
border-left: 5px solid #82b92e;
|
|
|
|
background-color: #545454;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol.steps li {
|
|
|
|
background-color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol.steps li.visited,
|
|
|
|
ol.steps li.visited span,
|
|
|
|
ol.steps li.visited a {
|
|
|
|
color: #eaeaea;
|
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* White text */
|
|
|
|
a,
|
2021-03-11 15:40:23 +01:00
|
|
|
label,
|
2019-07-01 16:57:33 +02:00
|
|
|
#menu_tab_left li a,
|
|
|
|
#menu_tab_left li span,
|
|
|
|
fieldset legend,
|
|
|
|
.tactical_set legend,
|
|
|
|
#user-notifications-wrappe,
|
|
|
|
#user_form *,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
2021-03-11 15:40:23 +01:00
|
|
|
.info_table,
|
2019-07-01 16:57:33 +02:00
|
|
|
.info_table > tbody > tr > th,
|
|
|
|
.info_table > thead > tr > th,
|
|
|
|
.info_table > thead > tr > th a,
|
|
|
|
.info_table > thead > tr > th > span,
|
|
|
|
form.discovery label,
|
|
|
|
.edit_user_labels,
|
2019-07-02 13:12:05 +02:00
|
|
|
.input_label,
|
|
|
|
.pagination,
|
|
|
|
tr.group_view_data,
|
2019-07-09 15:03:38 +02:00
|
|
|
.group_view_data,
|
|
|
|
ol.steps li span,
|
|
|
|
ol.steps li a {
|
2019-07-01 16:57:33 +02:00
|
|
|
color: #fff;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
/* Tabs icons change color */
|
2015-08-19 13:16:33 +02:00
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
/* menu.css */
|
|
|
|
.operation {
|
|
|
|
background-color: #252525;
|
2019-07-02 13:12:05 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
.godmode,
|
|
|
|
#menu_full {
|
|
|
|
background-color: #1a1a1a;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
.button_collapse {
|
|
|
|
background-color: #444;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
.operation .selected,
|
|
|
|
.godmode .selected,
|
|
|
|
.menu_icon:hover {
|
|
|
|
background-color: #080808;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
.sub_subMenu {
|
|
|
|
background-color: #343434;
|
2019-07-02 13:12:05 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
/* footer */
|
|
|
|
div#foot {
|
|
|
|
background: #222;
|
2019-07-02 13:12:05 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 10:08:04 +02:00
|
|
|
/* Overwrite inline styles */
|
2021-04-07 13:27:24 +02:00
|
|
|
.textodialogo td .white_important {
|
2019-07-08 10:08:04 +02:00
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* snmp */
|
|
|
|
#snmp_browser {
|
|
|
|
background-color: #222 !important;
|
2019-07-02 13:12:05 +02:00
|
|
|
}
|
|
|
|
|
2019-07-05 13:59:48 +02:00
|
|
|
/* events.css */
|
|
|
|
table.table_modal_alternate tr:nth-child(odd) td {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.table_modal_alternate tr:nth-child(even) td {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
2019-07-02 13:12:05 +02:00
|
|
|
/* tables.css */
|
2019-07-01 16:57:33 +02:00
|
|
|
.info_table {
|
2019-01-30 12:42:16 +01:00
|
|
|
background-color: #222;
|
2015-08-19 13:16:33 +02:00
|
|
|
}
|
2017-01-16 13:31:56 +01:00
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
.info_table > tbody > tr:nth-child(even) {
|
|
|
|
background-color: #111;
|
2017-01-16 13:31:56 +01:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
.info_table tr:first-child > th,
|
|
|
|
.info_table th {
|
|
|
|
background-color: #222;
|
|
|
|
color: #fff;
|
2017-02-27 14:28:09 +01:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
.info_table > tbody > tr:hover,
|
|
|
|
.databox.data > tbody > tr:hover,
|
2019-07-02 13:12:05 +02:00
|
|
|
.checkselected,
|
2019-01-30 12:42:16 +01:00
|
|
|
.rowPair:hover,
|
|
|
|
.rowOdd:hover {
|
2019-07-02 13:12:05 +02:00
|
|
|
background-color: #555 !important;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-09 15:03:38 +02:00
|
|
|
.info_table .datos3,
|
|
|
|
.datos3,
|
|
|
|
.info_table .datos4,
|
|
|
|
.datos4 {
|
|
|
|
background-color: #444;
|
2019-07-12 10:23:20 +02:00
|
|
|
color: #fff;
|
2019-07-09 15:03:38 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
.action_buttons a[href] img,
|
|
|
|
.action_buttons input[type="image"],
|
|
|
|
.action_button_img {
|
2021-03-11 15:40:23 +01:00
|
|
|
filter: brightness(4.5) contrast(50%);
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-09-10 10:26:28 +02:00
|
|
|
a.pandora_pagination {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* firts_task.css */
|
|
|
|
.new_task,
|
|
|
|
div.new_task_cluster,
|
|
|
|
div.new_task_cluster > div {
|
|
|
|
background-color: #222;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:12:05 +02:00
|
|
|
/* events.css */
|
|
|
|
.filter_summary div {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* webchat */
|
|
|
|
#chat_box,
|
|
|
|
#userlist_box {
|
|
|
|
background: #222 !important;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:12:05 +02:00
|
|
|
#chat_box > div span {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* tree.css */
|
|
|
|
.node-content:hover {
|
|
|
|
background-color: #222;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
ul.tree-group
|
|
|
|
li.tree-node
|
|
|
|
div.node-content
|
|
|
|
img:not(.module-status):not(.agent-status):not(.agent-alerts-fired) {
|
2021-03-11 15:40:23 +01:00
|
|
|
filter: invert(100%);
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* login.css */
|
2017-10-10 12:16:19 +02:00
|
|
|
div.login_nick input,
|
2019-01-30 12:42:16 +01:00
|
|
|
div.login_pass input {
|
2019-07-01 16:57:33 +02:00
|
|
|
background-color: #fff !important;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* user edit */
|
|
|
|
.edit_user_info_right input {
|
|
|
|
border-bottom: 1px solid #5f5f5f;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:12:05 +02:00
|
|
|
#user-notifications-wrapper {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* datatables */
|
|
|
|
table.dataTable tbody tr {
|
|
|
|
background-color: #222;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
table.dataTable span {
|
|
|
|
color: #fff;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* diagnostic info */
|
|
|
|
table#diagnostic_info {
|
|
|
|
background-color: #111 !important;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:12:05 +02:00
|
|
|
table#diagnostic_info th {
|
|
|
|
background-color: #444 !important;
|
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
table#diagnostic_info tbody td div {
|
|
|
|
background-color: #222 !important;
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 16:57:33 +02:00
|
|
|
/* agent view */
|
2019-07-02 13:12:05 +02:00
|
|
|
.buttons_agent_view {
|
|
|
|
filter: brightness(2.5);
|
2017-10-10 12:16:19 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:12:05 +02:00
|
|
|
/* jquery custom */
|
|
|
|
.ui-dialog,
|
|
|
|
.ui-widget-content {
|
2021-03-11 15:40:23 +01:00
|
|
|
background-color: #222 !important;
|
|
|
|
color: #fff;
|
2019-07-02 13:12:05 +02:00
|
|
|
}
|
|
|
|
.ui-widget-content,
|
|
|
|
.ui-widget-content a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-07-05 13:59:48 +02:00
|
|
|
|
2019-09-10 10:26:28 +02:00
|
|
|
.ui-widget-content.ui-autocomplete,
|
|
|
|
.ui-widget-content.ui-autocomplete a {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
2019-07-05 13:59:48 +02:00
|
|
|
.ui-state-default,
|
|
|
|
.ui-widget-content .ui-state-default,
|
|
|
|
.ui-widget-header .ui-state-default {
|
2019-09-10 10:26:28 +02:00
|
|
|
background-color: #222 !important;
|
|
|
|
color: #fff !important;
|
2019-07-05 13:59:48 +02:00
|
|
|
}
|
|
|
|
|
2021-03-11 15:40:23 +01:00
|
|
|
#cancel_btn_dialog {
|
|
|
|
background-color: red;
|
|
|
|
}
|
2019-07-05 13:59:48 +02:00
|
|
|
.ui-state-active,
|
|
|
|
.ui-widget-content .ui-state-active,
|
|
|
|
.ui-widget-header .ui-state-active {
|
|
|
|
background-color: #111;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-state-default a,
|
|
|
|
.ui-state-default a:link,
|
|
|
|
.ui-state-default a:visited,
|
|
|
|
a.ui-button,
|
|
|
|
a:link.ui-button,
|
|
|
|
a:visited.ui-button,
|
|
|
|
.ui-button {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.ui-tabs-nav.ui-corner-all.ui-helper-reset.ui-helper-clearfix.ui-widget-header
|
|
|
|
img {
|
|
|
|
filter: brightness(2);
|
|
|
|
}
|
2019-07-09 15:03:38 +02:00
|
|
|
|
2019-09-10 10:26:28 +02:00
|
|
|
.ui-dialog .ui-dialog-buttonpane button {
|
|
|
|
background-color: transparent;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-07-09 15:03:38 +02:00
|
|
|
/* notifications */
|
|
|
|
#notification-wrapper::before {
|
2021-03-11 15:40:23 +01:00
|
|
|
border-bottom-color: #222 !important;
|
|
|
|
color: #fff;
|
2019-07-09 15:03:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#notification-wrapper {
|
|
|
|
background: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-item {
|
|
|
|
background: #222;
|
|
|
|
}
|
|
|
|
|
2021-03-11 15:40:23 +01:00
|
|
|
pre,
|
2019-07-09 15:03:38 +02:00
|
|
|
.notification-subtitle {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update_manager.css */
|
|
|
|
div#box_online * {
|
|
|
|
color: #000;
|
|
|
|
}
|
2019-07-12 10:21:54 +02:00
|
|
|
|
|
|
|
/* discovery.css */
|
|
|
|
#text_wizard {
|
2021-03-11 15:40:23 +01:00
|
|
|
color: white;
|
2019-07-12 10:21:54 +02:00
|
|
|
}
|
2019-09-10 10:26:28 +02:00
|
|
|
|
|
|
|
/* news dialog */
|
|
|
|
#news_dialog #new_text {
|
|
|
|
background: #222 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ipam */
|
|
|
|
.tooltipster-content {
|
|
|
|
background: #222 !important;
|
|
|
|
}
|
2019-09-10 10:34:47 +02:00
|
|
|
|
|
|
|
/* licence */
|
2019-08-21 09:27:55 +02:00
|
|
|
div#code_license_dialog div#code,
|
|
|
|
div#form_activate_licence #code {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border: 0px;
|
|
|
|
background-color: #222;
|
|
|
|
}
|
2021-03-11 15:40:23 +01:00
|
|
|
|
|
|
|
.backgrund_primary_important {
|
|
|
|
background-color: #111 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w16px {
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
padding-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sound_div_background {
|
|
|
|
background-color: #222 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - RIGHT MENU SECTION -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#menu_tab_frame,
|
|
|
|
#menu_tab_frame_view,
|
|
|
|
#menu_tab_frame_view_bc {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-bottom: 2px solid #82b92e;
|
|
|
|
min-height: 50px;
|
|
|
|
width: calc(100% + 3em);
|
|
|
|
padding-right: 0px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
height: 50px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #111 !important;
|
|
|
|
border-top-right-radius: 7px;
|
|
|
|
border-top-left-radius: 7px;
|
|
|
|
box-shadow: 1px 1px 4px rgba(160, 160, 160, 0.514);
|
|
|
|
margin-left: -3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info_box {
|
|
|
|
background: #222 !important;
|
|
|
|
box-shadow: 0px 0px 15px -10px #888;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 0px 5px 5px 10px;
|
|
|
|
border-color: #e2e2e2;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
width: 100%;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.data_container:not(:hover) {
|
|
|
|
box-shadow: 2px 2px 10px #80ba27;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="submit"].submit-next:hover,
|
|
|
|
button.submit-next.ui-button.ui-corner-all.ui-widget:hover,
|
|
|
|
input[type="button"].submit-next:hover {
|
|
|
|
background: #82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.nf {
|
|
|
|
background: url(../../images/information_alerts.png) no-repeat scroll 0 50%
|
|
|
|
transparent;
|
|
|
|
margin-left: 7px;
|
|
|
|
padding: 8px 1px 6px 25px;
|
|
|
|
}
|
|
|
|
/*Font header feedback*/
|
|
|
|
form#modal_form_feedback {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form#modal_form_feedback label {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
form#modal_form_feedback input[type="email"] {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
font-family: "lato-bolder", "Open Sans", sans-serif;
|
|
|
|
font-weight: lighter;
|
|
|
|
padding: 0px 0px 2px 0px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form#modal_form_feedback ul.wizard li {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form#modal_form_feedback ul.wizard li > label:not(.p-switch) {
|
|
|
|
width: 250px;
|
|
|
|
vertical-align: top;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
form#modal_form_feedback ul.wizard li > textarea {
|
|
|
|
width: 600px;
|
|
|
|
height: 15em;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
#categories_library .card_category a:hover {
|
|
|
|
color: #82b92e;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#library_main_content div.library_main_category:hover {
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
background-color: #222;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 19px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#library_main_content div.library_main_category a:hover {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.textodialogo {
|
|
|
|
margin-left: 0px;
|
|
|
|
color: #333;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 9pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of classes for event priorities */
|
|
|
|
div#main_pure {
|
|
|
|
background-color: #111;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
height: 1000px;
|
|
|
|
width: 98%;
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.pure {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
flex-direction: row;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 20px;
|
|
|
|
background: #222 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.invert_filter {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph_conteiner_inside,
|
|
|
|
.container_table,
|
|
|
|
.second_background {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-widget .container-center {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-layout {
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 3px dashed #fff;
|
|
|
|
background: #222;
|
|
|
|
padding: 10px 0px 10px 0px;
|
|
|
|
}
|
|
|
|
|
2021-04-09 11:52:28 +02:00
|
|
|
.bullet .range.s0 {
|
|
|
|
background-color: #222;
|
|
|
|
fill: #222 !important;
|
2021-03-11 15:40:23 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:07:38 +02:00
|
|
|
text {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
2021-03-11 15:40:23 +01:00
|
|
|
.legendLabel {
|
2021-04-09 11:52:28 +02:00
|
|
|
color: #fff;
|
2021-03-11 15:40:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.incident_table {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 5px;
|
|
|
|
font-size: smaller;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default {
|
|
|
|
background-color: #111 !important;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default #cluetip-outer {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default h3 {
|
|
|
|
margin: 0 0 5px;
|
|
|
|
padding: 8px 10px 4px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #111 !important;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default h3#cluetip-title {
|
|
|
|
display: none;
|
|
|
|
height: 0px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default #cluetip-title a {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 0.95em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default #cluetip-inner {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cluetip-default div#cluetip-close {
|
|
|
|
text-align: right;
|
|
|
|
margin: 0 5px 5px;
|
|
|
|
color: #900;
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:07:38 +02:00
|
|
|
.cluetip-default ul,
|
|
|
|
.text_left {
|
|
|
|
text-align: left !important;
|
2021-03-11 15:40:23 +01:00
|
|
|
}
|
|
|
|
.card {
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
background-color: #222;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card_link_button:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: #eaeaea;
|
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar_library {
|
|
|
|
min-width: 360px;
|
|
|
|
margin-left: 50px;
|
|
|
|
padding: 0px 0px 0px 30px;
|
|
|
|
background-color: #222;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.category_link:hover {
|
|
|
|
color: #82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container_servicemap_legend {
|
|
|
|
position: absolute;
|
2021-04-07 13:27:24 +02:00
|
|
|
background: #222;
|
2021-03-11 15:40:23 +01:00
|
|
|
margin-top: 10px;
|
|
|
|
right: 2px;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
opacity: 0.9;
|
2021-04-07 13:27:24 +02:00
|
|
|
color: #fff;
|
2021-03-11 15:40:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.notification-subtitle_black {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no_invert_filter {
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:disabled {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
#file_table_modal .create_folder,
|
|
|
|
#file_table_modal .create_text_file,
|
|
|
|
#file_table_modal .upload_file {
|
|
|
|
width: 33%;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
margin-right: 2px;
|
|
|
|
background-color: #222 !important;
|
|
|
|
}
|
|
|
|
div.criticity {
|
|
|
|
width: 150px;
|
|
|
|
height: 2em;
|
|
|
|
color: black;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="submit"].submit-next,
|
|
|
|
button.submit-next.ui-button.ui-corner-all.ui-widget,
|
|
|
|
input[type="button"].submit-next {
|
|
|
|
color: #82b92e;
|
|
|
|
border: 1px solid #82b92e;
|
|
|
|
background-color: #222 !important;
|
|
|
|
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 1.3em;
|
|
|
|
margin: 0.5em 1em 0.5em 0;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
height: 30px;
|
|
|
|
width: auto;
|
|
|
|
min-width: 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="submit"].submit-cancel,
|
|
|
|
button.submit-cancel.ui-button.ui-corner-all.ui-widget,
|
|
|
|
button.submit-cancel {
|
|
|
|
color: #fb4444;
|
|
|
|
border: 1px solid #fb4444;
|
|
|
|
background-color: #222 !important;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 1.3em;
|
|
|
|
margin: 0.5em 1em 0.5em 0;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
height: 30px;
|
|
|
|
width: auto;
|
|
|
|
min-width: 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="submit"].submit-cancel:hover,
|
|
|
|
button.submit-cancel.ui-button.ui-corner-all.ui-widget:hover,
|
|
|
|
button.submit-cancel:hover {
|
|
|
|
background: #fb4444;
|
|
|
|
}
|
|
|
|
.submit-next:hover {
|
|
|
|
background: #82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#dashboard-controls {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
width: 600px;
|
|
|
|
height: 70px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #222;
|
|
|
|
border-radius: 15px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2021-04-07 13:27:24 +02:00
|
|
|
.serviceap_show_bg {
|
|
|
|
overflow: hidden;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title_service_unstack,
|
|
|
|
.title,
|
|
|
|
.title_service_stack {
|
|
|
|
font-size: 11px;
|
|
|
|
text-align: center;
|
|
|
|
text-anchor: middle;
|
|
|
|
fill: #fff;
|
|
|
|
font-family: Verdana;
|
|
|
|
}
|
2021-04-09 11:52:28 +02:00
|
|
|
|
|
|
|
.tickLabel {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2021-04-09 12:00:11 +02:00
|
|
|
|
|
|
|
.integria_details_shadow {
|
|
|
|
background-color: #222;
|
|
|
|
border-bottom: 1px solid #e2e2e2;
|
|
|
|
border-left: 1px solid #e2e2e2;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-right: 1px solid #e2e2e2;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.integria_details_description textarea {
|
|
|
|
width: 100%;
|
|
|
|
background-color: #111;
|
|
|
|
color: #fff;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
2021-04-14 12:07:38 +02:00
|
|
|
|
|
|
|
.grid-stack-item-content {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
.widget-groups-status h1 a {
|
|
|
|
font-size: 1.1em;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 20px;
|
|
|
|
color: #fff;
|
|
|
|
font-family: "lato-lighter", "Open Sans", sans-serif;
|
|
|
|
letter-spacing: 0.03pt;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget_groups_status {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
.flot-text {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table.group_modules_status_box tr td {
|
|
|
|
font-family: "lato-lighter", "Open Sans", sans-serif;
|
|
|
|
letter-spacing: 0.03pt;
|
|
|
|
font-size: 11pt;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff !important;
|
|
|
|
font-weight: bolder;
|
|
|
|
text-align: justify;
|
|
|
|
border-bottom: 0px;
|
|
|
|
}
|
|
|
|
.bg_222_important {
|
|
|
|
background-color: #222 !important;
|
|
|
|
}
|
2021-04-14 15:09:19 +02:00
|
|
|
|
|
|
|
.networkconsole {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fill_222 {
|
|
|
|
fill: #222 !important;
|
|
|
|
}
|
|
|
|
.fill_fff {
|
|
|
|
fill: #fff !important;
|
|
|
|
}
|