Browse Source

Merge pull request #26193 from marination/country-modal-cart-v13-release

fix: Address Card issues in e-commerce
develop
Marica 3 years ago
committed by GitHub
parent
commit
bf3e191570
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      erpnext/public/scss/shopping_cart.scss
  2. 1
      erpnext/templates/includes/cart/cart_address.html

8
erpnext/public/scss/shopping_cart.scss

@ -467,11 +467,15 @@ body.product-page {
.btn-change-address {
color: var(--blue-500);
box-shadow: none;
border: 1px solid var(--blue-500);
}
}
.btn-new-address:hover, .btn-change-address:hover {
box-shadow: none;
color: var(--blue-500) !important;
border: 1px solid var(--blue-500);
}
.modal .address-card {
.card-body {
padding: var(--padding-sm);

1
erpnext/templates/includes/cart/cart_address.html

@ -99,6 +99,7 @@ frappe.ready(() => {
fieldname: 'country',
fieldtype: 'Link',
options: 'Country',
only_select: true,
reqd: 1
},
{

Loading…
Cancel
Save