Fix for issue #876

* Increase width of coupon code input field on laptop/desktop.
* Rebuild CSS.

* On screen sizes greater than 768px wide the coupon code input field is too
  narrow and the placeholder text "Coupon code" appears to be truncated.
This commit is contained in:
Noel Springer 2018-12-22 14:14:10 +10:00
parent f1d17707db
commit 1db1455322
4 changed files with 16 additions and 5 deletions

File diff suppressed because one or more lines are too long

2
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,6 +4,13 @@
}
// Woocommerce product gallery slider width fix
figure.woocommerce-product-gallery__wrapper {
max-width: inherit !important;
figure.woocommerce-product-gallery__wrapper {
max-width: inherit !important;
}
// Fix coupon code input width
@media(min-width: 768px) {
#coupon_code.input-text {
width: 110px !important;
}
}