13138-Add label event filter

This commit is contained in:
Pablo Aragon 2024-03-21 14:47:03 +01:00
parent 50d95d5120
commit 327516b931
2 changed files with 7 additions and 7 deletions

View File

@ -180,11 +180,6 @@ form.flex-row div.filter_input.filter_input_switch .p-slider {
width: 30px; width: 30px;
} }
form .filter_input_not_search .p-switch {
flex: 0 1 30px;
margin: 0;
}
fieldset { fieldset {
margin: 0 auto; margin: 0 auto;
} }

View File

@ -2097,12 +2097,13 @@ $data .= html_print_checkbox_switch(
true true
); );
$data .= '<label class="vert-align-bottom pdd_r_15px">';
$data .= __('Not');
$data .= ui_print_help_tip( $data .= ui_print_help_tip(
__('Search for elements NOT containing given text.'), __('Search for elements NOT containing given text.'),
true true
); );
$data .= '</label>';
$data .= '&nbsp&nbsp&nbsp';
$data .= html_print_checkbox_switch( $data .= html_print_checkbox_switch(
'regex', 'regex',
@ -2113,10 +2114,14 @@ $data .= html_print_checkbox_switch(
'checked_slide_events(this);', 'checked_slide_events(this);',
true true
); );
$data .= '<label class="vert-align-bottom pdd_r_15px">';
$data .= __('Regexp');
$data .= ui_print_help_tip( $data .= ui_print_help_tip(
__('Search by regular expression.'), __('Search by regular expression.'),
true true
); );
$data .= '</label>';
$data .= '</div>'; $data .= '</div>';