Widen the selector used to hide the quantity input (#36384)

This commit is contained in:
Barry Hughes 2023-01-13 09:19:04 -08:00 committed by GitHub
commit 5d10f08e28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
Significance: patch
Type: tweak
Comment: We're tweaking an unreleased change which is already covered by a changelog entry added in PR#36350.

View File

@ -3,6 +3,6 @@
*/
/* We do not wish to display the quantity selector (within single product pages) if the product is sold individually. */
.woocommerce.single-product .product.sold-individually input[name="quantity"] {
.woocommerce.single-product .product.sold-individually .quantity {
display: none;
}