Commit 6eeae99ae7a for woocommerce

commit 6eeae99ae7a34b2c0bfb035e56ad61b9deb27c1e
Author: verofasulo <98944206+verofasulo@users.noreply.github.com>
Date:   Thu May 14 15:03:28 2026 +0200

    Remove the underline from product title links (#64741)

    * Remove the underline from product title links

    DataViews already sets text-decoration:none on title links, but the
    WP admin global anchor styling has higher specificity in this
    context and re-applies the underline. Add a scoped rule under
    .woocommerce-product-list to win the cascade.

    * add comment

    ---------

    Co-authored-by: Luigi Teschio <gigitux@gmail.com>

diff --git a/packages/js/experimental-products-app/changelog/update-remove-product-title-underline b/packages/js/experimental-products-app/changelog/update-remove-product-title-underline
new file mode 100644
index 00000000000..d9610eab260
--- /dev/null
+++ b/packages/js/experimental-products-app/changelog/update-remove-product-title-underline
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Remove the underline from product title links in the experimental All Products list.
diff --git a/packages/js/experimental-products-app/src/style.scss b/packages/js/experimental-products-app/src/style.scss
index 7a17f8770db..fbb5cc7e975 100644
--- a/packages/js/experimental-products-app/src/style.scss
+++ b/packages/js/experimental-products-app/src/style.scss
@@ -47,6 +47,15 @@
 	height: 100%;
 }

+// Temporary override until DataViews supports title links without default underlines.
+#woocommerce-products-dashboard a.dataviews-title-field {
+	text-decoration: none;
+
+	&:hover {
+		text-decoration: underline;
+	}
+}
+
 .woocommerce-product-edit {
 	display: flex;
 	flex-direction: column;