diff --git a/htdocs/public/payment/newpayment.php b/htdocs/public/payment/newpayment.php
index 72ad0390cce..62f82bc33d1 100644
--- a/htdocs/public/payment/newpayment.php
+++ b/htdocs/public/payment/newpayment.php
@@ -602,7 +602,7 @@ print $text;
// Output payment summary form
print '
';
print '';
-print '| '.$langs->trans("ThisIsInformationOnPayment").' : | '."\n";
+print '| '.$langs->trans("ThisIsInformationOnPayment").' : | '."\n";
$found=false;
$error=0;
diff --git a/htdocs/theme/common/cheque.png b/htdocs/theme/common/cheque.png
new file mode 100644
index 00000000000..34b89a1e1d0
Binary files /dev/null and b/htdocs/theme/common/cheque.png differ
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index a83d2ed9dd8..1c991f9ccd7 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -344,48 +344,40 @@ input.buttongen {
vertical-align: middle;
}
input.buttonpayment {
- width: 300px;
+ min-width: 280px;
margin-bottom: 15px;
background-image: none;
line-height: 24px;
padding: 8px;
+ background: none;
+ border: 2px solid #666666;
}
input.buttonpaymentcb {
background-image: url();
background-size: 26px;
background-repeat: no-repeat;
- background-position: 5px 5px;
+ background-position: 2px 11px;
}
input.buttonpaymentcheque {
background-image: url();
- background-repeat: no-repeat;
- background-position: 8px 7px;
-}
-input.buttonpaymentcb {
- background-image: url();
background-size: 24px;
background-repeat: no-repeat;
- background-position: 5px 4px;
-}
-input.buttonpaymentcheque {
- background-image: url();
- background-repeat: no-repeat;
- background-position: 5px 4px;
+ background-position: 2px 8px;
}
input.buttonpaymentpaypal {
background-image: url();
background-repeat: no-repeat;
- background-position: 8px 7px;
+ background-position: 8px 11px;
}
input.buttonpaymentpaybox {
background-image: url();
background-repeat: no-repeat;
- background-position: 8px 7px;
+ background-position: 8px 11px;
}
input.buttonpaymentstripe {
background-image: url();
background-repeat: no-repeat;
- background-position: 8px 7px;
+ background-position: 8px 11px;
}
/* Used by timesheets */
span.timesheetalreadyrecorded input {
@@ -3147,7 +3139,7 @@ div.titre {
/* text-shadow: 1px 1px 2px #FFFFFF; */
}
-#dolpaymenttable { width: 600px; font-size: 13px; }
+#dolpaymenttable { max-width: 600px; font-size: 16px; }
#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; padding: 20px; }
#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; }
#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; }
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 0f3711bf45b..1ed9b433be7 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -341,11 +341,13 @@ input.buttongen {
vertical-align: middle;
}
input.buttonpayment {
- width: 300px;
+ min-width: 280px;
margin-bottom: 15px;
background-image: none;
line-height: 24px;
padding: 8px;
+ background: none;
+ border: 2px solid #666666;
}
input.buttonpaymentcb {
background-image: url();
@@ -3237,7 +3239,7 @@ div.titre {
dol_optimize_smallscreen)?'':'margin-top: 4px;'); ?>
}
-#dolpaymenttable { width: 600px; font-size: 13px; }
+#dolpaymenttable { max-width: 600px; font-size: 16px; }
#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; padding: 20px; }
#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; }
#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; }
|