Merge branch 'ent-13414-mejorar-puntos-de-creacion-de-modulos' into 'develop'

Ent 13414 mejorar puntos de creacion de modulos

See merge request artica/pandorafms!7182
This commit is contained in:
Jose Martin 2024-04-12 06:32:45 +00:00
commit c49a2e010a
4 changed files with 29 additions and 4 deletions

View File

@ -1208,7 +1208,7 @@ $createModuleTable->data[1][] = html_print_label_input_block(
html_print_anchor(
[
'href' => 'https://pandorafms.com/Library/Library/',
'class' => 'color-black-grey invert_filter',
'class' => 'color-black-grey',
'content' => __('Get more modules on Monitoring Library'),
],
true

View File

@ -442,7 +442,7 @@ $tableBasicThresholds->rowclass = [];
$tableBasicThresholds->data = [];
// WARNING THRESHOLD.
$tableBasicThresholds->rowclass['caption_warning_threshold'] = 'field_half_width pdd_t_10px';
$tableBasicThresholds->rowclass['caption_warning_threshold'] = 'field_half_width';
$tableBasicThresholds->rowclass['warning_threshold'] = 'field_half_width';
$tableBasicThresholds->data['caption_warning_threshold'][0] .= __('Warning threshold').' ';
@ -617,7 +617,7 @@ $tableBasicThresholds->data['critical_threshold'][0] .= html_print_input_text(
$classdisabledBecauseInPolicy
);
$table_simple->rowstyle['thresholds_table'] = 'margin-top: 15px;height: 400px;width: 100%';
$table_simple->rowstyle['thresholds_table'] = 'margin-top: 15px;height: 450px;width: 100%';
$table_simple->cellclass['thresholds_table'][0] = 'table_section half_section_left';
$table_simple->data['thresholds_table'][0] = html_print_table($tableBasicThresholds, true);
if (modules_is_string_type($id_module_type) === false || (bool) $edit === true) {
@ -896,7 +896,7 @@ $tagsAvailableData .= html_print_image(
[
'id' => 'right',
'title' => __('Add tags to module'),
'class' => 'main_menu_icon invert_filter clickable mrgn_lft_5px',
'class' => 'main_menu_icon invert_filter clickable mrgn_lft_5px black-and-white',
]
);

View File

@ -14216,3 +14216,11 @@ button.ui-button-text-only.ui-widget.sub:hover,
#button_generate_code input.buttonButton {
box-shadow: none;
}
.black-and-white {
filter: saturate(0);
}
.invert_filter.black-and-white {
filter: invert(1) saturate(0) !important;
}

View File

@ -2005,6 +2005,23 @@ div.show_result_interpreter {
border-top: 0;
}
.switch_radio_button input:checked + label {
color: var(--text-color) !important;
}
.tags_selected_container > span.select2 {
background-color: #111 !important;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
border-color: #707070 !important;
}
.select2-container.select2-container--focus .select2-selection--multiple {
border-color: #8a96a6 !important;
}
th {
border-bottom: 1px solid var(--border-color);
}