estado_agente prevent filter options overlapping

This commit is contained in:
fbsanchez 2020-09-28 16:11:26 +02:00
parent 12314d33c3
commit d152ba2980
2 changed files with 15 additions and 6 deletions

View File

@ -474,6 +474,9 @@ select:-internal-list-box {
.w20px {
width: 20px;
}
.nowrap {
white-space: nowrap;
}
.w10p {
width: 10%;
}
@ -604,6 +607,12 @@ select:-internal-list-box {
.padding-6 {
padding: 6em;
}
.padding-right-2 {
padding-right: 2em;
}
.padding-right-2-imp {
padding-right: 2em !important;
}
.margin-right-1 {
margin-right: 1em;
}

View File

@ -213,7 +213,7 @@ echo '<form method="post" action="?sec=view&sec2=operation/agentes/estado_agente
echo '<table cellpadding="4" cellspacing="4" class="databox filters" width="100%" style="font-weight: bold; margin-bottom: 10px;">';
echo '<tr><td style="white-space:nowrap;">';
echo '<tr><td class="nowrap mw250px padding-right-2-imp">';
echo __('Group').'&nbsp;';
@ -221,17 +221,17 @@ $groups = users_get_groups(false, $access);
html_print_select_groups(false, $access, true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false);
echo '</td><td style="white-space:nowrap;">';
echo '</td><td class="nowrap">';
echo __('Recursion').'&nbsp;';
html_print_checkbox('recursion', 1, $recursion, false, false, 'this.form.submit()');
echo '</td><td style="white-space:nowrap;">';
echo '</td><td class="nowrap">';
echo __('Search').'&nbsp;';
html_print_input_text('search', $search, '', 15);
echo '</td><td style="white-space:nowrap;">';
echo '</td><td class="nowrap">';
$fields = [];
$fields[AGENT_STATUS_NORMAL] = __('Normal');
@ -244,12 +244,12 @@ $fields[AGENT_STATUS_NOT_INIT] = __('Not init');
echo __('Status').'&nbsp;';
html_print_select($fields, 'status', $status, 'this.form.submit()', __('All'), AGENT_STATUS_ALL, false, false, true, '', false, 'width: 90px;');
echo '</td><td style="white-space:nowrap;">';
echo '</td><td class="nowrap">';
echo __('Search in custom fields').'&nbsp;';
html_print_input_text('search_custom', $search_custom, '', 15);
echo '</td><td style="white-space:nowrap;">';
echo '</td><td class="nowrap">';
html_print_submit_button(
__('Search'),