Fix order confirmation page styles (#40666)

* Fix order confirmation page styles

* Fix order confirmation page styles

* Add changelog file
This commit is contained in:
Niels Lange 2023-10-16 17:37:51 +07:00 committed by GitHub
parent 8f533167f7
commit c4e0113c09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 27 deletions

View File

@ -0,0 +1,4 @@
Significance: minor
Type: fix
Fixed styling of list items on the order confirmation page when using a block theme.

View File

@ -978,20 +978,6 @@ ul.wc-tabs {
margin-bottom: var(--wp--style--block-gap);
}
// Improves the presentation of order overview (order #, date, email, etc, not the line items) on the Thank you page.
ul.woocommerce-order-overview {
li {
display: inline;
text-transform: uppercase;
strong {
text-transform: none;
display: block;
}
}
}
// Bottom section of the Thank you page---customer details: align, add border, make it look nice.
.woocommerce-customer-details {
address {

View File

@ -1015,19 +1015,6 @@ ul.wc-tabs {
margin-bottom: var(--wp--style--block-gap);
}
ul.woocommerce-order-overview {
li {
display: inline;
text-transform: uppercase;
strong {
text-transform: none;
display: block;
}
}
}
.woocommerce-customer-details {
address {
border: 1px solid var(--wp--preset--color--black);

View File

@ -360,6 +360,13 @@ a.added_to_cart {
flex-grow: 1;
margin-bottom: 1rem;
border: none;
display: inline;
text-transform: uppercase;
strong {
text-transform: none;
display: block;
}
}
}