diff --git a/htdocs/contact/card.php b/htdocs/contact/card.php
index e6429fdc6d7..37bd3078c7d 100644
--- a/htdocs/contact/card.php
+++ b/htdocs/contact/card.php
@@ -530,9 +530,9 @@ else
// Name
print '
| ';
- print 'lastname).'" autofocus="autofocus"> | ';
+ print 'lastname).'" autofocus="autofocus"> | ';
print ' | ';
- print 'firstname).'"> |
';
+ print 'firstname).'"> | ';
// Company
if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
@@ -567,7 +567,7 @@ else
// Address
if (($objsoc->typent_code == 'TE_PRIVATE' || ! empty($conf->global->CONTACT_USE_COMPANY_ADDRESS)) && dol_strlen(trim($object->address)) == 0) $object->address = $objsoc->address; // Predefined with third party
print ' | ';
- print ' | ';
+ print ' | ';
if ($conf->use_javascript_ajax && $socid > 0)
{
@@ -612,20 +612,20 @@ else
// Phone / Fax
if (($objsoc->typent_code == 'TE_PRIVATE' || ! empty($conf->global->CONTACT_USE_COMPANY_ADDRESS)) && dol_strlen(trim($object->phone_pro)) == 0) $object->phone_pro = $objsoc->phone; // Predefined with third party
print '
| ';
- print 'phone_pro).'"> | ';
+ print 'phone_pro).'"> | ';
print ' | ';
- print 'phone_perso).'"> |
';
+ print 'phone_perso).'"> | ';
if (($objsoc->typent_code == 'TE_PRIVATE' || ! empty($conf->global->CONTACT_USE_COMPANY_ADDRESS)) && dol_strlen(trim($object->fax)) == 0) $object->fax = $objsoc->fax; // Predefined with third party
print ' | ';
- print 'phone_mobile).'"> | ';
+ print 'phone_mobile).'"> | ';
print ' | ';
- print 'fax).'"> |
';
+ print 'fax).'"> | ';
// EMail
if (($objsoc->typent_code == 'TE_PRIVATE' || ! empty($conf->global->CONTACT_USE_COMPANY_ADDRESS)) && dol_strlen(trim($object->email)) == 0) $object->email = $objsoc->email; // Predefined with third party
print ' | ';
- print 'email).'"> | ';
+ print 'email).'"> | ';
if (! empty($conf->mailing->enabled))
{
print ' | ';
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index 3cce27c4a2a..3fabbf347c0 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -642,7 +642,7 @@ div.fiche>form>div.div-table-responsive {
.clearboth { clear:both; }
.hideobject { display: none; }
.minwidth50 { min-width: 50px; }
-/* rule to reduce top menu - 3rd reduction */
+/* rule for not too small screen only */
@media only screen and (min-width: px)
{
.minwidth100 { min-width: 100px; }
@@ -731,7 +731,7 @@ div.fiche>form>div.div-table-responsive {
.hideonsmartphone { display: none; }
.noenlargeonsmartphone { width : 50px !important; display: inline !important; }
- .maxwidthonsmartphone { max-width: 100px; }
+ .maxwidthonsmartphone, #search_newcompany.ui-autocomplete-input { max-width: 100px; }
.maxwidth50onsmartphone { max-width: 40px; }
.maxwidth75onsmartphone { max-width: 50px; }
.maxwidth100onsmartphone { max-width: 70px; }
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 4ab240af4d6..236e87abc84 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -619,7 +619,7 @@ div.fiche>form>div.div-table-responsive {
.clearboth { clear:both; }
.hideobject { display: none; }
.minwidth50 { min-width: 50px; }
-/* rule to reduce top menu - 3rd reduction */
+/* rule for not too small screen only */
@media only screen and (min-width: px)
{
.minwidth100 { min-width: 100px; }
@@ -709,7 +709,7 @@ div.fiche>form>div.div-table-responsive {
.hideonsmartphone { display: none; }
.noenlargeonsmartphone { width : 50px !important; display: inline !important; }
- .maxwidthonsmartphone { max-width: 100px; }
+ .maxwidthonsmartphone, #search_newcompany.ui-autocomplete-input { max-width: 100px; }
.maxwidth50onsmartphone { max-width: 40px; }
.maxwidth75onsmartphone { max-width: 50px; }
.maxwidth100onsmartphone { max-width: 70px; }