Commit e1444f07d9 for woocommerce
commit e1444f07d9cd358d201b6767978cc7e0b533f6ac
Author: Albert Juhé Lluveras <contact@albertjuhe.com>
Date: Tue Dec 9 15:11:20 2025 +0100
Styling and copy improvements to the Launch Your Store screen (#62254)
* Replace menu hierarchy separators from | to >
* Prevent LYS sidebar items to overflow the sidebar
* Don't show hover styles to LYS completed item
* Add changelog file
diff --git a/plugins/woocommerce/changelog/fix-launch-your-store-minor-fixes b/plugins/woocommerce/changelog/fix-launch-your-store-minor-fixes
new file mode 100644
index 0000000000..39d12f87ef
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-launch-your-store-minor-fixes
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Styling and copy improvements to Launch Your Store screen
diff --git a/plugins/woocommerce/client/admin/client/launch-your-store/hub/sidebar/components/launch-store-hub.tsx b/plugins/woocommerce/client/admin/client/launch-your-store/hub/sidebar/components/launch-store-hub.tsx
index 128f01b274..782887e94f 100644
--- a/plugins/woocommerce/client/admin/client/launch-your-store/hub/sidebar/components/launch-store-hub.tsx
+++ b/plugins/woocommerce/client/admin/client/launch-your-store/hub/sidebar/components/launch-store-hub.tsx
@@ -56,7 +56,7 @@ export const LaunchYourStoreHubSidebar = ( props: SidebarComponentProps ) => {
);
const sidebarDescription = __(
- 'Ready to start selling? Before you launch your store, make sure you’ve completed these essential tasks. If you’d like to change your store visibility, go to WooCommerce | Settings | Site visibility.',
+ 'Ready to start selling? Before you launch your store, make sure you’ve completed these essential tasks. If you’d like to change your store visibility, go to WooCommerce > Settings > Site visibility.',
'woocommerce'
);
diff --git a/plugins/woocommerce/client/admin/client/launch-your-store/hub/styles.scss b/plugins/woocommerce/client/admin/client/launch-your-store/hub/styles.scss
index 0df4edcfdb..0d4b9eced1 100644
--- a/plugins/woocommerce/client/admin/client/launch-your-store/hub/styles.scss
+++ b/plugins/woocommerce/client/admin/client/launch-your-store/hub/styles.scss
@@ -281,6 +281,7 @@
align-self: stretch;
width: 348px;
border: 1.5px solid transparent;
+ max-width: 100%;
&.all-tasks-complete {
svg {
@@ -288,7 +289,7 @@
}
}
- &:hover {
+ &:hover:not(.all-tasks-complete) {
background: #ededed;
color: $gray-600;
}