From b8cd11842c4eed6413005481d969704caecf453c Mon Sep 17 00:00:00 2001 From: KJ Roelke Date: Sat, 22 Nov 2025 12:49:09 -0600 Subject: [PATCH 1/3] update editor styles --- changelog.md | 4 ++++ src/styles/base/_editor-utilities.scss | 27 ++++++++++++++++++++++++++ src/styles/editor.scss | 1 + style.css | 2 +- 4 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 src/styles/base/_editor-utilities.scss diff --git a/changelog.md b/changelog.md index ea4dc24..1810aae 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 2.1.0 - [November 22, 2025] + +- Added: Further editor styles + ## 2.0.2 - [November 20, 2025] - Fixed: Interest Form has appropriate "Reply-To" header diff --git a/src/styles/base/_editor-utilities.scss b/src/styles/base/_editor-utilities.scss new file mode 100644 index 0000000..b4406ee --- /dev/null +++ b/src/styles/base/_editor-utilities.scss @@ -0,0 +1,27 @@ +.h-100 { + height: 100% !important; +} + +.w-100 { + width: 100% !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.mt-auto { + margin-top: auto !important; +} diff --git a/src/styles/editor.scss b/src/styles/editor.scss index 66f2b45..7e64a59 100644 --- a/src/styles/editor.scss +++ b/src/styles/editor.scss @@ -1,6 +1,7 @@ // Base Styles @use "./base/base"; @use "./base/utilities"; +@use "./base/editor-utilities"; @use "./components/footer"; // Block Overrides diff --git a/style.css b/style.css index 5f2caf0..a060ad4 100644 --- a/style.css +++ b/style.css @@ -4,7 +4,7 @@ Theme URI: https://github.com/macrosbysara/wordpress-theme Author: KJ Roelke Author URI: https://kjroelke.online Description: A WordPress Theme built for Macros By Sara site -Version: 2.0.2 +Version: 2.0.3 Requires at least: 6.7.0 Tested up to: 6.8.3 Requires PHP: 8.2 From 63d872ada8b736d64facded9023b2f564817835d Mon Sep 17 00:00:00 2001 From: KJ Roelke Date: Tue, 25 Nov 2025 19:59:59 -0600 Subject: [PATCH 2/3] fix asset loading --- inc/theme/class-rest-router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/theme/class-rest-router.php b/inc/theme/class-rest-router.php index 96336b6..01a0629 100644 --- a/inc/theme/class-rest-router.php +++ b/inc/theme/class-rest-router.php @@ -116,7 +116,7 @@ public function enqueue_interest_form_script() { wp_enqueue_script( 'cloudflare', 'https://challenges.cloudflare.com/turnstile/v0/api.js', - array( 'global' ), + array(), null, // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion array( 'strategy' => 'async', From 4565c24b0d53d49da7ac001e761210f87952e614 Mon Sep 17 00:00:00 2001 From: KJ Roelke Date: Tue, 25 Nov 2025 20:01:44 -0600 Subject: [PATCH 3/3] update changelog --- changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 1810aae..ee07a14 100644 --- a/changelog.md +++ b/changelog.md @@ -1,8 +1,8 @@ # Changelog -## 2.1.0 - [November 22, 2025] +## 2.0.3 - [November 25, 2025] -- Added: Further editor styles +- Tweak: Further editor styles ## 2.0.2 - [November 20, 2025]