From dec774ccf582e26a97ca2795ef9c734f45e0acd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Sun, 15 Apr 2018 14:03:05 +0200 Subject: [PATCH 1/3] login transparent when using background --- htdocs/theme/eldy/style.css.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index e1bb49ae46e..ae1ffa0ae99 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -1815,8 +1815,13 @@ form#login { padding-top:16px; padding-bottom:12px; max-width: 560px; - - background-color: #FFFFFF; +global->MAIN_LOGIN_BACKGROUND)) { + print ' background-color: rgba(255, 255, 255, 0.8);'; +} else { + print ' background-color: #FFFFFF;'; +} +?> -webkit-box-shadow: 0 2px 23px 2px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(60,60,60,0.15); box-shadow: 0 2px 23px 2px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(60,60,60,0.15); From ba50fcd13059449a6defedc76b49877b4730c631 Mon Sep 17 00:00:00 2001 From: Marc de Lima Lucio Date: Mon, 16 Apr 2018 15:15:35 +0200 Subject: [PATCH 2/3] FIX: left search form: directly display all qualified objects --- htdocs/main.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php index 68fb0ce8d38..14a0e42a2f5 100644 --- a/htdocs/main.inc.php +++ b/htdocs/main.inc.php @@ -1634,7 +1634,7 @@ function left_menu($menu_array_before, $helppagename='', $notused='', $menu_arra if ($conf->use_javascript_ajax && empty($conf->global->MAIN_USE_OLD_SEARCH_FORM)) { //$searchform.=$form->selectArrayAjax('searchselectcombo', DOL_URL_ROOT.'/core/ajax/selectsearchbox.php', $selected, '', '', 0, 1, 'vmenusearchselectcombo', 1, $langs->trans("Search"), 1); - $searchform.=$form->selectArrayFilter('searchselectcombo', $arrayresult, $selected, '', 1, 0, 1, 'vmenusearchselectcombo', 1, $langs->trans("Search"), 1); + $searchform.=$form->selectArrayFilter('searchselectcombo', $arrayresult, $selected, '', 1, 0, 0, 'vmenusearchselectcombo', 1, $langs->trans("Search"), 1); } else { From f06412ebc1264f1572cefbd2d516ca33a4fe48fe Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 17 Apr 2018 09:35:25 +0200 Subject: [PATCH 3/3] Update style.css.php --- htdocs/theme/eldy/style.css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index ae1ffa0ae99..59dc0414749 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -1817,7 +1817,7 @@ form#login { max-width: 560px; global->MAIN_LOGIN_BACKGROUND)) { - print ' background-color: rgba(255, 255, 255, 0.8);'; + print ' background-color: rgba(255, 255, 255, 0.9);'; } else { print ' background-color: #FFFFFF;'; }