diff --git a/CHANGELOG.md b/CHANGELOG.md index 793177f399..252e8bf1ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Draft - Page Suggested Items still listed on Cornerstone [#2438](https://github.com/bigcommerce/cornerstone/pull/2438) +- ADA Compliance - Add translations to accessibility attributes for Coupon Code and Gift Certificates [#2440](https://github.com/bigcommerce/cornerstone/pull/2440) +- ADA Compliance - The Add to Cart modal dialog container is not labeled [#2427](https://github.com/bigcommerce/cornerstone/pull/2427) +- ADA Compliance - Decorative SVG elements should be hidden from screen reader users [#2432](https://github.com/bigcommerce/cornerstone/pull/2432) +- ADA Compliance - Content that functions as a list should be indicated as such to screen reader users [#2429](https://github.com/bigcommerce/cornerstone/pull/2429) +- ADA Compliance - All form fields must be properly labeled [#2433](https://github.com/bigcommerce/cornerstone/pull/2433) +- ADA Compliance - Errors are not identified to screen reader users within the Refine By accordions [#2424](https://github.com/bigcommerce/cornerstone/pull/2424) +- ADA Compliance - Expandable items should be read by screen reader [2422](https://github.com/bigcommerce/cornerstone/pull/2422) - Remove shop_by_price: true from category.html [#2431](https://github.com/bigcommerce/cornerstone/pull/2431) - Added SEPA and ECP stored bank accounts typesto the Payment methods page [#2434](https://github.com/bigcommerce/cornerstone/pull/2434) @@ -29,11 +36,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Change case of Page builder menu item text [#2407](https://github.com/bigcommerce/cornerstone/pull/2407) - Corrected typo with the word default previously deafault in config.json [#2410](https://github.com/bigcommerce/cornerstone/pull/2410) - Adding autocomplete to common input fields [2397](https://github.com/bigcommerce/cornerstone/pull/2397) -- ADA Compliance - Expandable items should be read by screen reader [2422](https://github.com/bigcommerce/cornerstone/pull/2422) - Pre-Orded text in Polish looks cropped in the button on Product page [2414](https://github.com/bigcommerce/cornerstone/pull/2414) - Use triple sash on customer's company name to prevent escaping ampersands [#2399](https://github.com/bigcommerce/cornerstone/pull/2399) - Adding aria attributes to cart page coupon code and gift cert buttons [#2391](https://github.com/bigcommerce/cornerstone/pull/2391) -- ADA Compliance - Errors are not identified to screen reader users within the Refine By accordions [#2424](https://github.com/bigcommerce/cornerstone/pull/2424) ## 6.12.0 (07-06-2023) - sync package lock file [#2373](https://github.com/bigcommerce/cornerstone/pull/2373) diff --git a/assets/scss/layouts/footer/_footer.scss b/assets/scss/layouts/footer/_footer.scss index 88a9937167..2138b9a1eb 100644 --- a/assets/scss/layouts/footer/_footer.scss +++ b/assets/scss/layouts/footer/_footer.scss @@ -41,7 +41,6 @@ display: inline-block; float: none; font-size: fontSize("base"); // 2 - margin-bottom: spacing("double"); overflow-wrap: break-word; text-align: center; vertical-align: top; @@ -144,15 +143,23 @@ } .footer-payment-icons { - height: remCalc(40); + display: flex; + flex-wrap: wrap; + justify-content: center; + list-style-type: none; + margin-left: 0; margin-top: spacing("single"); + @include breakpoint("small") { + justify-content: normal; + } + @include breakpoint("medium") { margin-top: spacing("double"); } .footer-payment-icon { - height: 100%; + height: remCalc(40); margin: spacing("quarter"); vertical-align: middle; width: remCalc(50); diff --git a/lang/en.json b/lang/en.json index 1cd456c97f..7171adbc49 100755 --- a/lang/en.json +++ b/lang/en.json @@ -400,6 +400,7 @@ "credit_card_number": "Credit Card Number", "expiration": "Expiration", "cvv": "CVV", + "payment_icons_label": "Payment icons", "card_types": { "american_express": "American Express", "credit_card": "Credit Card", @@ -878,7 +879,9 @@ "range": { "update": "Update", "min-placeholder": "Min.", - "max-placeholder": "Max." + "max-placeholder": "Max.", + "min-description": "Enter the minimum price to filter products by", + "max-description": "Enter the maximum price to filter products by" }, "rating": { "and-up": "& up" diff --git a/templates/components/cart/content.html b/templates/components/cart/content.html index 2b8c5f24e1..bc52f46a15 100644 --- a/templates/components/cart/content.html +++ b/templates/components/cart/content.html @@ -156,7 +156,7 @@

data-confirm-delete="{{lang 'cart.confirm_delete'}}" aria-label="{{lang 'cart.remove_item' name=name}}" > - + {{/or}} diff --git a/templates/components/cart/coupon-input.html b/templates/components/cart/coupon-input.html index 3e0e5dd0a0..82613dc5b8 100644 --- a/templates/components/cart/coupon-input.html +++ b/templates/components/cart/coupon-input.html @@ -1,7 +1,7 @@
@@ -26,7 +29,10 @@ required type="number" value="{{max_price}}" + aria-label="{{lang 'search.faceted.range.max-placeholder'}}" + aria-describedby="max_price_description" /> + {{lang 'search.faceted.range.max-description'}}
diff --git a/templates/components/products/product-view.html b/templates/components/products/product-view.html index 2f93966d75..a43be8ffdf 100644 --- a/templates/components/products/product-view.html +++ b/templates/components/products/product-view.html @@ -276,6 +276,6 @@