diff --git a/htdocs/comm/index.php b/htdocs/comm/index.php
index dd4bf5ea07b..e84193eb17c 100644
--- a/htdocs/comm/index.php
+++ b/htdocs/comm/index.php
@@ -93,9 +93,9 @@ if ($conf->propal->enabled && $user->rights->propale->lire) {
$var=false;
print '
\n";
}
@@ -106,9 +106,9 @@ if ($conf->contrat->enabled) {
$var=false;
print '
\n";
}
diff --git a/htdocs/compta/index.php b/htdocs/compta/index.php
index 0429fd13d60..44455d32a4f 100644
--- a/htdocs/compta/index.php
+++ b/htdocs/compta/index.php
@@ -44,7 +44,9 @@ if ($user->societe_id > 0)
$socidp = $user->societe_id;
}
-llxHeader("","Accueil Compta");
+
+llxHeader("",$langs->trans("AccountancyTreasuryArea"));
+
/*
* Actions
@@ -89,9 +91,9 @@ if ($conf->facture->enabled) {
print '
";
}
@@ -342,7 +344,7 @@ if ($conf->facture->enabled && $user->rights->facture->lire)
if ($i < $conf->liste_limit)
{
$var=!$var;
- print '| '.img_object($langs->trans("ShowBill"),"bill").' '.$obj->facnumber.' | ';
+ print '
| '.img_object($langs->trans("ShowBill"),"bill").' '.$obj->facnumber.' | ';
print ''.img_object($langs->trans("ShowCustomer"),"company").' '.$obj->nom.' | ';
print ''.price($obj->total).' | ';
print ''.price($obj->total_ttc).' | ';
diff --git a/htdocs/product/index.php b/htdocs/product/index.php
index 93cc58eb58b..eed5418df37 100644
--- a/htdocs/product/index.php
+++ b/htdocs/product/index.php
@@ -49,12 +49,12 @@ print '
';
/*
* Zone recherche produit/service
*/
-print ' ";
diff --git a/htdocs/theme/eldy/eldy.css b/htdocs/theme/eldy/eldy.css
index 5068eaa6788..8740819d804 100644
--- a/htdocs/theme/eldy/eldy.css
+++ b/htdocs/theme/eldy/eldy.css
@@ -47,6 +47,8 @@ textarea { font: helvetica, verdana, arial, sans-serif; }
border: 1px solid #ccd7e0;
background-image : url(/theme/eldy/img/button_bg.png);
background-position : bottom;
+ padding: 0em 0em;
+ margin: 0em 0em;
}
@@ -670,29 +672,23 @@ div.FicheSubmit {
input.flat
{
background: #FDFDFD;
- padding: 0em 1em;
- margin: 0em 0em 2em 0em;
border: 1px solid #8C9C9B;
- margin: 0em;
padding: 0em 0em;
+ margin: 0em 0em 0em 0em;
}
input
{
background: #FDFDFD;
- padding: 0em 1em;
- margin: 0em 0em 2em 0em;
border: 1px solid #8C9C9B;
- margin: 0em;
padding: 0em 0em;
+ margin: 0em 0em 0em 0em;
}
textarea
{
background: #FDFDFD;
- padding: 0em 1em;
- margin: 0em 0em 2em 0em;
border: 1px solid #8C9C9B;
- margin: 0em;
padding: 0em 0em;
+ margin: 0em 0em 0em 0em;
}
td.valeur
|