estado_agente prevent filter options overlapping
This commit is contained in:
parent
12314d33c3
commit
d152ba2980
|
@ -474,6 +474,9 @@ select:-internal-list-box {
|
||||||
.w20px {
|
.w20px {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
}
|
}
|
||||||
|
.nowrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
.w10p {
|
.w10p {
|
||||||
width: 10%;
|
width: 10%;
|
||||||
}
|
}
|
||||||
|
@ -604,6 +607,12 @@ select:-internal-list-box {
|
||||||
.padding-6 {
|
.padding-6 {
|
||||||
padding: 6em;
|
padding: 6em;
|
||||||
}
|
}
|
||||||
|
.padding-right-2 {
|
||||||
|
padding-right: 2em;
|
||||||
|
}
|
||||||
|
.padding-right-2-imp {
|
||||||
|
padding-right: 2em !important;
|
||||||
|
}
|
||||||
.margin-right-1 {
|
.margin-right-1 {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 '<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').' ';
|
echo __('Group').' ';
|
||||||
|
|
||||||
|
@ -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);
|
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').' ';
|
echo __('Recursion').' ';
|
||||||
html_print_checkbox('recursion', 1, $recursion, false, false, 'this.form.submit()');
|
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').' ';
|
echo __('Search').' ';
|
||||||
html_print_input_text('search', $search, '', 15);
|
html_print_input_text('search', $search, '', 15);
|
||||||
|
|
||||||
echo '</td><td style="white-space:nowrap;">';
|
echo '</td><td class="nowrap">';
|
||||||
|
|
||||||
$fields = [];
|
$fields = [];
|
||||||
$fields[AGENT_STATUS_NORMAL] = __('Normal');
|
$fields[AGENT_STATUS_NORMAL] = __('Normal');
|
||||||
|
@ -244,12 +244,12 @@ $fields[AGENT_STATUS_NOT_INIT] = __('Not init');
|
||||||
echo __('Status').' ';
|
echo __('Status').' ';
|
||||||
html_print_select($fields, 'status', $status, 'this.form.submit()', __('All'), AGENT_STATUS_ALL, false, false, true, '', false, 'width: 90px;');
|
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').' ';
|
echo __('Search in custom fields').' ';
|
||||||
html_print_input_text('search_custom', $search_custom, '', 15);
|
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(
|
html_print_submit_button(
|
||||||
__('Search'),
|
__('Search'),
|
||||||
|
|
Loading…
Reference in New Issue