|
@@ -266,7 +266,8 @@ $searchForm->addElement('hidden', 'user', $user_id);
|
|
|
foreach ($filters as $param) {
|
|
|
$searchForm->addElement($param['type'], $param['name'], $param['label']);
|
|
|
}
|
|
|
-$searchForm->addElement('button', 'submit', get_lang('Search'));
|
|
|
+$searchForm->addButtonSearch(get_lang('Search'));
|
|
|
+//$searchForm->addElement('button', 'submit', get_lang('Search'));
|
|
|
|
|
|
$filterData = array();
|
|
|
if ($searchForm->validate()) {
|
|
@@ -464,17 +465,21 @@ if(!empty($msg)) {
|
|
|
|
|
|
<td width="10%" valign="middle" align="center">
|
|
|
<?php if ($ajax_search) { ?>
|
|
|
- <button class="arrowl" type="button" onclick="remove_item(document.getElementById('destination'))"></button>
|
|
|
+ <button class="btn-primary" type="button" onclick="remove_item(document.getElementById('destination'))"></button>
|
|
|
<?php } else { ?>
|
|
|
- <button class="arrowr" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))"></button>
|
|
|
+ <button class="btn-primary" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
|
|
|
+ <i class="fa fa-chevron-right"></i>
|
|
|
+ </button>
|
|
|
<br /><br />
|
|
|
- <button class="arrowl" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))"></button>
|
|
|
+ <button class="btn-primary" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
|
|
|
+ <i class="fa fa-chevron-left"></i>
|
|
|
+ </button>
|
|
|
<?php
|
|
|
}
|
|
|
?>
|
|
|
- <br /><br /><br /><br /><br /><br />
|
|
|
+ <br /><br /><br /><br />
|
|
|
<?php
|
|
|
- echo '<button class="save" type="button" value="" onclick="valide()" >'.$tool_name.'</button>';
|
|
|
+ echo '<button class="btn-success" type="button" value="" onclick="valide()" >'.$tool_name.'</button>';
|
|
|
?>
|
|
|
</td>
|
|
|
<td width="45%" align="center">
|