CSS
This commit is contained in:
parent
66b33573ef
commit
4d22baabfe
@ -1719,7 +1719,7 @@ if ($action != 'dopayment')
|
||||
|
||||
if ((empty($paymentmethod) || $paymentmethod == 'paybox') && !empty($conf->paybox->enabled))
|
||||
{
|
||||
print '<br><div class="button buttonpayment" id="div_dopayment_paybox"><span class="fa fa-credit-card"></span> <input class="" type="submit" id="dopayment_paybox" name="dopayment_paybox" value="'.$langs->trans("PayBoxDoPayment").'">';
|
||||
print '<div class="button buttonpayment" id="div_dopayment_paybox"><span class="fa fa-credit-card"></span> <input class="" type="submit" id="dopayment_paybox" name="dopayment_paybox" value="'.$langs->trans("PayBoxDoPayment").'">';
|
||||
print '<br>';
|
||||
print '<span class="buttonpaymentsmall">'.$langs->trans("CreditOrDebitCard").'</span>';
|
||||
print '</div>';
|
||||
@ -1739,7 +1739,7 @@ if ($action != 'dopayment')
|
||||
|
||||
if ((empty($paymentmethod) || $paymentmethod == 'stripe') && !empty($conf->stripe->enabled))
|
||||
{
|
||||
print '<br><div class="button buttonpayment" id="div_dopayment_stripe"><span class="fa fa-credit-card"></span> <input class="" type="submit" id="dopayment_stripe" name="dopayment_stripe" value="'.$langs->trans("StripeDoPayment").'">';
|
||||
print '<div class="button buttonpayment" id="div_dopayment_stripe"><span class="fa fa-credit-card"></span> <input class="" type="submit" id="dopayment_stripe" name="dopayment_stripe" value="'.$langs->trans("StripeDoPayment").'">';
|
||||
print '<input type="hidden" name="noidempotency" value="'.GETPOST('noidempotency', 'int').'">';
|
||||
print '<br>';
|
||||
print '<span class="buttonpaymentsmall">'.$langs->trans("CreditOrDebitCard").'</span>';
|
||||
@ -1763,7 +1763,7 @@ if ($action != 'dopayment')
|
||||
{
|
||||
if (empty($conf->global->PAYPAL_API_INTEGRAL_OR_PAYPALONLY)) $conf->global->PAYPAL_API_INTEGRAL_OR_PAYPALONLY = 'integral';
|
||||
|
||||
print '<br><div class="button buttonpayment" id="div_dopayment_paypal"><span class="fa fa-paypal"></span> <input class="" type="submit" id="dopayment_paypal" name="dopayment_paypal" value="'.$langs->trans("PaypalDoPayment").'">';
|
||||
print '<div class="button buttonpayment" id="div_dopayment_paypal"><span class="fa fa-paypal"></span> <input class="" type="submit" id="dopayment_paypal" name="dopayment_paypal" value="'.$langs->trans("PaypalDoPayment").'">';
|
||||
if ($conf->global->PAYPAL_API_INTEGRAL_OR_PAYPALONLY == 'integral')
|
||||
{
|
||||
print '<br>';
|
||||
|
||||
@ -240,6 +240,7 @@ input.buttongen {
|
||||
input.buttonpayment, button.buttonpayment, div.buttonpayment {
|
||||
min-width: 290px;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 15px;
|
||||
background-image: none;
|
||||
line-height: 24px;
|
||||
padding: 8px;
|
||||
@ -251,6 +252,8 @@ input.buttonpayment, button.buttonpayment, div.buttonpayment {
|
||||
box-shadow: 1px 1px 4px #bbb;
|
||||
color: #fff;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
max-width: 350px;
|
||||
}
|
||||
div.buttonpayment input:focus {
|
||||
color: #008;
|
||||
@ -411,7 +414,7 @@ div#moretabsList, div#moretabsListaction {
|
||||
hr { border: 0; border-top: 1px solid #ccc; }
|
||||
.tabBar hr { margin-top: 20px; margin-bottom: 17px; }
|
||||
|
||||
.button:not(.bordertransp), .buttonDelete:not(.bordertransp) {
|
||||
.button:not(.bordertransp):not(.buttonpayment), .buttonDelete:not(.bordertransp):not(.buttonpayment) {
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
margin-left: 5px;
|
||||
|
||||
@ -393,7 +393,7 @@ input.buttongen {
|
||||
input.buttonpayment, button.buttonpayment, div.buttonpayment {
|
||||
min-width: 290px;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 0;
|
||||
margin-top: 15px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
background-image: none;
|
||||
@ -566,7 +566,7 @@ div#moretabsList, div#moretabsListaction {
|
||||
|
||||
hr { border: 0; border-top: 1px solid #ccc; }
|
||||
|
||||
.button:not(.bordertransp), .buttonDelete:not(.bordertransp) {
|
||||
.button:not(.bordertransp):not(.buttonpayment), .buttonDelete:not(.bordertransp):not(.buttonpayment) {
|
||||
border-color: #c5c5c5;
|
||||
border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
|
||||
display: inline-block;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user