Fix product vendor display on checkout.

This commit is contained in:
Jeff Stieler 2022-01-12 14:58:54 -07:00
parent 6e08e1802f
commit 9c3afa0ab3
1 changed files with 32 additions and 27 deletions

View File

@ -723,6 +723,38 @@ $tt2-gray: #f7f7f7;
}
}
}
table.shop_table,
table.shop_table_responsive {
tbody {
.product-name {
a:not(:hover) {
text-decoration: none;
}
a:hover {
text-decoration: underline;
text-decoration-thickness: 1px;
}
.variation {
dt {
font-style: italic;
margin-right: 0.25rem;
float: left;
}
dd {
font-style: normal;
a {
font-style: normal;
}
}
}
}
}
}
/*
* Cart / Checkout
@ -788,33 +820,6 @@ $tt2-gray: #f7f7f7;
}
}
}
.product-name {
a:not(:hover) {
text-decoration: none;
}
a:hover {
text-decoration: underline;
text-decoration-thickness: 1px;
}
.variation {
dt {
font-style: italic;
margin-right: 0.25rem;
float: left;
}
dd {
font-style: normal;
a {
font-style: normal;
}
}
}
}
}
}