From 9c3afa0ab370b957ebe49f434723b684025bf820 Mon Sep 17 00:00:00 2001 From: Jeff Stieler Date: Wed, 12 Jan 2022 14:58:54 -0700 Subject: [PATCH] Fix product vendor display on checkout. --- .../legacy/css/twenty-twenty-two.scss | 59 ++++++++++--------- 1 file changed, 32 insertions(+), 27 deletions(-) diff --git a/plugins/woocommerce/legacy/css/twenty-twenty-two.scss b/plugins/woocommerce/legacy/css/twenty-twenty-two.scss index 4083dc14917..1aac916c319 100644 --- a/plugins/woocommerce/legacy/css/twenty-twenty-two.scss +++ b/plugins/woocommerce/legacy/css/twenty-twenty-two.scss @@ -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; - } - } - } - } } }