From 1a6092f14ad55b193ab5e45a8c5896f466013d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Costa?= Date: Mon, 16 Feb 2026 09:24:58 -0300 Subject: [PATCH 1/7] Change migration description font size --- assets/css/admin.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/admin.css b/assets/css/admin.css index ed09528..a2401c3 100644 --- a/assets/css/admin.css +++ b/assets/css/admin.css @@ -178,7 +178,7 @@ .stellarwp-migration-card__description { color: #50575e; - font-size: 14px; + font-size: 12px; line-height: 1.5; margin: 0 0 16px; } @@ -548,7 +548,7 @@ .stellarwp-migration-single__description { color: #50575e; - font-size: 14px; + font-size: 12px; line-height: 1.6; margin: 0; } From 0bab35c9a0e4d3c9fe6af34ae04caa1fc53b4f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Costa?= Date: Mon, 16 Feb 2026 09:25:21 -0300 Subject: [PATCH 2/7] Show completed migrations by default --- src/Admin/UI.php | 2 +- src/views/list.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Admin/UI.php b/src/Admin/UI.php index a041de7..ba39ba8 100644 --- a/src/Admin/UI.php +++ b/src/Admin/UI.php @@ -220,7 +220,7 @@ private function parse_filters(): array { "stellarwp_migrations_{$prefix}_filters", [ 'tags' => $tags, - 'show_completed' => ! empty( filter_input( INPUT_GET, 'show_completed', FILTER_SANITIZE_NUMBER_INT ) ), + 'show_completed' => filter_input( INPUT_GET, 'show_completed', FILTER_SANITIZE_NUMBER_INT ) !== '0', 'show_non_applicable' => ! empty( filter_input( INPUT_GET, 'show_non_applicable', FILTER_SANITIZE_NUMBER_INT ) ), ] ); diff --git a/src/views/list.php b/src/views/list.php index b6f620e..5082b24 100644 --- a/src/views/list.php +++ b/src/views/list.php @@ -68,6 +68,7 @@ class="stellarwp-migrations-select2"
+