Styling, address_override
This commit is contained in:
parent
21f9723479
commit
a2ca5f6a78
|
@ -113,6 +113,8 @@ ul.recent-orders.stock_list a,ul.stock_list.stock_list a{text-decoration:none;}
|
|||
.woocommerce table.shippingrows td.country .chzn-container .search-field input,.woocommerce table.taxrows td.country .chzn-container .search-field input{width:150px !important;}
|
||||
.woocommerce table.widefat table.coupon_rows{border:0 !important;width:100%;}.woocommerce table.widefat table.coupon_rows thead th{padding:1px;border:0;font-weight:normal;font-size:11px;color:#999;}
|
||||
.woocommerce table.widefat table.coupon_rows tbody td{padding:3px 3px 0 0;border:0;vertical-align:middle;}.woocommerce table.widefat table.coupon_rows tbody td input.text{width:95px;}
|
||||
.woocommerce table.form-table textarea.input-text{height:100%;min-width:150px;}
|
||||
.woocommerce table.form-table textarea.wide-input{width:100%;}
|
||||
.woocommerce #tabs-wrap table a.remove{margin-left:4px;}
|
||||
.woocommerce #tabs-wrap table p{margin:0 0 4px !important;overflow:hidden;zoom:1;}
|
||||
.woocommerce #tabs-wrap table p a.add{float:left;}
|
||||
|
|
|
@ -649,7 +649,8 @@ ul.recent-orders, ul.stock_list {
|
|||
}
|
||||
|
||||
|
||||
.woocommerce table.widefat {
|
||||
.woocommerce {
|
||||
table.widefat {
|
||||
table.coupon_rows {
|
||||
border: 0 !important;
|
||||
width: 100%;
|
||||
|
@ -674,6 +675,16 @@ ul.recent-orders, ul.stock_list {
|
|||
}
|
||||
}
|
||||
}
|
||||
table.form-table {
|
||||
textarea.input-text {
|
||||
height: 100%;
|
||||
min-width: 150px;
|
||||
}
|
||||
textarea.wide-input {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.woocommerce #tabs-wrap table a.remove {
|
||||
margin-left: 4px;
|
||||
|
|
|
@ -215,7 +215,7 @@ class woocommerce_paypal extends woocommerce_payment_gateway {
|
|||
|
||||
if ($this->send_shipping=='yes') :
|
||||
$paypal_args['no_shipping'] = 0;
|
||||
$paypal_args['address_override'] = 1;
|
||||
$paypal_args['address_override'] = 0;
|
||||
else :
|
||||
$paypal_args['no_shipping'] = 1;
|
||||
endif;
|
||||
|
|
Loading…
Reference in New Issue