CSS
This commit is contained in:
parent
4d1e247a5c
commit
b2611e4cdb
@ -217,6 +217,7 @@ if ($action == 'delete_action') {
|
|||||||
/*
|
/*
|
||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$parameters = array(
|
$parameters = array(
|
||||||
'socid' => $socid,
|
'socid' => $socid,
|
||||||
'status' => $status,
|
'status' => $status,
|
||||||
|
|||||||
@ -2080,7 +2080,7 @@ class Form
|
|||||||
if ($num) {
|
if ($num) {
|
||||||
// Enhance with select2
|
// Enhance with select2
|
||||||
include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
|
||||||
$out .= ajax_combobox($htmlname);
|
$out = ajax_combobox($htmlname).$out;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
dol_print_error($this->db);
|
dol_print_error($this->db);
|
||||||
|
|||||||
@ -84,7 +84,7 @@ $left = ($langs->trans("DIRECTION") == 'rtl' ? 'right' : 'left');
|
|||||||
$title = $langs->trans("Menu");
|
$title = $langs->trans("Menu");
|
||||||
|
|
||||||
// URL http://mydolibarr/core/get_menudiv.php?dol_use_jmobile=1 can be used for tests
|
// URL http://mydolibarr/core/get_menudiv.php?dol_use_jmobile=1 can be used for tests
|
||||||
$head = '<!-- Menu -->'."\n";
|
$head = '<!-- Menu -->'."\n"; // This is used by DoliDroid to know page is a menu page
|
||||||
$arrayofjs = array();
|
$arrayofjs = array();
|
||||||
$arrayofcss = array();
|
$arrayofcss = array();
|
||||||
top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
|
top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
|
||||||
|
|||||||
@ -73,11 +73,11 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
|
|||||||
print '<div class="divsearchfield">';
|
print '<div class="divsearchfield">';
|
||||||
|
|
||||||
// Type
|
// Type
|
||||||
print '<span class="fas fa-square inline-block fawidth30" style=" color: #ddd;" title="'.$langs->trans("ActionType").'"></span>';
|
|
||||||
$multiselect = 0;
|
$multiselect = 0;
|
||||||
if (!empty($conf->global->MAIN_ENABLE_MULTISELECT_TYPE)) { // We use an option here because it adds bugs when used on agenda page "peruser" and "list"
|
if (!empty($conf->global->MAIN_ENABLE_MULTISELECT_TYPE)) { // We use an option here because it adds bugs when used on agenda page "peruser" and "list"
|
||||||
$multiselect = (!empty($conf->global->AGENDA_USE_EVENT_TYPE));
|
$multiselect = (!empty($conf->global->AGENDA_USE_EVENT_TYPE));
|
||||||
}
|
}
|
||||||
|
print img_picto($langs->trans("ActionType"), 'square', 'class="fawidth30 inline-block" style="color: #ddd;"');
|
||||||
print $formactions->select_type_actions($actioncode, "search_actioncode", $excludetype, (empty($conf->global->AGENDA_USE_EVENT_TYPE) ? 1 : -1), 0, $multiselect, 0, 'maxwidth500');
|
print $formactions->select_type_actions($actioncode, "search_actioncode", $excludetype, (empty($conf->global->AGENDA_USE_EVENT_TYPE) ? 1 : -1), 0, $multiselect, 0, 'maxwidth500');
|
||||||
print '</div>';
|
print '</div>';
|
||||||
|
|
||||||
|
|||||||
@ -81,7 +81,7 @@ if (GETPOST('acction', 'aZ') == 'switchentity') {
|
|||||||
$title = $langs->trans("Multicompanies");
|
$title = $langs->trans("Multicompanies");
|
||||||
|
|
||||||
// URL http://mydolibarr/core/multicompany_page?dol_use_jmobile=1 can be used for tests
|
// URL http://mydolibarr/core/multicompany_page?dol_use_jmobile=1 can be used for tests
|
||||||
$head = '<!-- Multicompany access -->'."\n";
|
$head = '<!-- Multicompany access -->'."\n"; // This is used by DoliDroid to know page is a multicompany selection page
|
||||||
$arrayofjs = array();
|
$arrayofjs = array();
|
||||||
$arrayofcss = array();
|
$arrayofcss = array();
|
||||||
top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
|
top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
|
||||||
|
|||||||
@ -58,7 +58,7 @@ $left = ($langs->trans("DIRECTION") == 'rtl' ? 'right' : 'left');
|
|||||||
$title = $langs->trans("Search");
|
$title = $langs->trans("Search");
|
||||||
|
|
||||||
// URL http://mydolibarr/core/search_page?dol_use_jmobile=1 can be used for tests
|
// URL http://mydolibarr/core/search_page?dol_use_jmobile=1 can be used for tests
|
||||||
$head = '<!-- Quick access -->'."\n";
|
$head = '<!-- Quick access -->'."\n"; // This is used by DoliDroid to know page is a search page
|
||||||
$arrayofjs = array();
|
$arrayofjs = array();
|
||||||
$arrayofcss = array();
|
$arrayofcss = array();
|
||||||
top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
|
top_htmlhead($head, $title, 0, 0, $arrayofjs, $arrayofcss);
|
||||||
|
|||||||
@ -1058,6 +1058,9 @@ body[class*="colorblind-"] .text-success{
|
|||||||
font-size: 1.5em; vertical-align: text-bottom;
|
font-size: 1.5em; vertical-align: text-bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fawidth30 {
|
||||||
|
width: 20px;
|
||||||
|
}
|
||||||
.floatnone {
|
.floatnone {
|
||||||
float: none !important;
|
float: none !important;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user