feat: clickable WooCommerce product links in mapping UI
Product names in the mapped table are now links that open the WC product page in a new tab. Added woo_permalink field, stored during fetch, returned by search endpoint. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -587,6 +587,24 @@ html[style*="color-scheme: dark"] {
|
||||
color: var(--woo-accent);
|
||||
background: var(--woo-bg-hover);
|
||||
}
|
||||
/* Product link to WooCommerce */
|
||||
.woo-product-link {
|
||||
color: var(--woo-accent);
|
||||
text-decoration: none;
|
||||
transition: color 0.15s;
|
||||
}
|
||||
.woo-product-link:hover {
|
||||
color: var(--woo-accent-hover);
|
||||
text-decoration: underline;
|
||||
}
|
||||
.woo-external-icon {
|
||||
font-size: 0.7rem;
|
||||
opacity: 0.5;
|
||||
}
|
||||
.woo-product-link:hover .woo-external-icon {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.woo-price-sync-col {
|
||||
width: 60px;
|
||||
white-space: nowrap;
|
||||
|
||||
Reference in New Issue
Block a user