SNMP black theme
This commit is contained in:
parent
e024658520
commit
74c0dbb39f
|
@ -565,11 +565,11 @@ class SnmpConsole extends HTML
|
||||||
echo '<td><div class="snmp_view_div">';
|
echo '<td><div class="snmp_view_div">';
|
||||||
echo '<h3>'.__('Action').'</h3>';
|
echo '<h3>'.__('Action').'</h3>';
|
||||||
echo '<div style=" display : flex;align-items : center;">';
|
echo '<div style=" display : flex;align-items : center;">';
|
||||||
echo html_print_image('images/validate.svg', true, ['class' => 'main_menu_icon']).' - '.__('Validate');
|
echo html_print_image('images/validate.svg', true, ['class' => 'main_menu_icon invert_filter']).' - '.__('Validate');
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<br />';
|
echo '<br />';
|
||||||
echo '<div style=" display : flex;align-items : center;">';
|
echo '<div style=" display : flex;align-items : center;">';
|
||||||
echo html_print_image('images/delete.svg', true, ['class' => 'main_menu_icon']).' - '.__('Delete');
|
echo html_print_image('images/delete.svg', true, ['class' => 'main_menu_icon invert_filter']).' - '.__('Delete');
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '</div></div></td>';
|
echo '</div></div></td>';
|
||||||
|
|
||||||
|
@ -905,7 +905,7 @@ class SnmpConsole extends HTML
|
||||||
'border' => '0',
|
'border' => '0',
|
||||||
'title' => __('Validate'),
|
'title' => __('Validate'),
|
||||||
'onclick' => 'validate_trap(\''.$tmp->id_trap.'\')',
|
'onclick' => 'validate_trap(\''.$tmp->id_trap.'\')',
|
||||||
'class' => 'main_menu_icon',
|
'class' => 'invert_filter main_menu_icon',
|
||||||
]
|
]
|
||||||
).'</a> ';
|
).'</a> ';
|
||||||
}
|
}
|
||||||
|
@ -945,7 +945,7 @@ class SnmpConsole extends HTML
|
||||||
'class' => 'invert_filter main_menu_icon',
|
'class' => 'invert_filter main_menu_icon',
|
||||||
]
|
]
|
||||||
).'</a>';
|
).'</a>';
|
||||||
$tmp->action .= '<a href="index.php?sec=snmpconsole&sec2=enterprise/godmode/snmpconsole/snmp_trap_editor_form&oid='.$tmp->oid.'&custom_oid='.urlencode($tmp->oid_custom).'&severity='.$tmp->severity.'&text='.io_safe_input($tmp->text).'&description='.io_safe_input($tmp->description, ENT_QUOTES).'" title="'.io_safe_input($tmp->description, ENT_QUOTES).'">'.html_print_image('images/edit.svg', true, ['alt' => __('SNMP trap editor'), 'title' => __('SNMP trap editor'), 'class' => 'main_menu_icon']).'</a>';
|
$tmp->action .= '<a href="index.php?sec=snmpconsole&sec2=enterprise/godmode/snmpconsole/snmp_trap_editor_form&oid='.$tmp->oid.'&custom_oid='.urlencode($tmp->oid_custom).'&severity='.$tmp->severity.'&text='.io_safe_input($tmp->text).'&description='.io_safe_input($tmp->description, ENT_QUOTES).'" title="'.io_safe_input($tmp->description, ENT_QUOTES).'">'.html_print_image('images/edit.svg', true, ['alt' => __('SNMP trap editor'), 'title' => __('SNMP trap editor'), 'class' => 'main_menu_icon invert_filter']).'</a>';
|
||||||
|
|
||||||
$tmp->m = html_print_checkbox_extended('snmptrapid[]', $tmp->id_trap, false, false, '', 'class="chk"', true);
|
$tmp->m = html_print_checkbox_extended('snmptrapid[]', $tmp->id_trap, false, false, '', 'class="chk"', true);
|
||||||
|
|
||||||
|
|
|
@ -11330,10 +11330,6 @@ div[role="dialog"] {
|
||||||
z-index: 1115;
|
z-index: 1115;
|
||||||
}
|
}
|
||||||
|
|
||||||
button[name="go"] {
|
|
||||||
margin-left: 10px;
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.module_background_state {
|
.module_background_state {
|
||||||
mask: url(../../images/modules@svg.svg) no-repeat center / contain;
|
mask: url(../../images/modules@svg.svg) no-repeat center / contain;
|
||||||
-webkit-mask: url(../../images/modules@svg.svg) no-repeat center / contain;
|
-webkit-mask: url(../../images/modules@svg.svg) no-repeat center / contain;
|
||||||
|
|
|
@ -1419,3 +1419,7 @@ div.white_box_opened[style*="height:0"] {
|
||||||
div.white_box.white_box_opened.no_border {
|
div.white_box.white_box_opened.no_border {
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.filter-table-adv td > div label {
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue