From 4014d4857aa0fde9fa7b70497a37f1f02d45e17d Mon Sep 17 00:00:00 2001 From: Graham Aitken Date: Thu, 11 Jul 2024 13:53:58 +0100 Subject: [PATCH 001/111] Update articles CSS rules for HTML quote elements --- resources/css/components/articles.css | 37 ++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/resources/css/components/articles.css b/resources/css/components/articles.css index ce2cd2c1..e1ed1f5b 100644 --- a/resources/css/components/articles.css +++ b/resources/css/components/articles.css @@ -58,11 +58,40 @@ section.app-article p code { } section.app-article ul li i, -section.app-article p i -{ +section.app-article p i { @apply font-semibold - text-gray-900 - dark:text-gray-100 tracking-wide; } + +section.app-article blockquote, +section.app-article q { + @apply + w-full + text-lg + text-gray-800 + dark:text-gray-200 + mb-8 + border-l-4 + border-gray-900 + dark:border-gray-300 + px-4 + py-2 + bg-gray-200 + dark:bg-gray-800; +} + +section.app-article blockquote p, +section.app-article q p { + @apply + mb-0; +} + +section.app-article blockquote p i, +section.app-article blockquote ul li i, +section.app-article q p i, +section.app-article q ul li i { + @apply + font-normal + tracking-widest; +} From 54c2ef7a6b33aa9c64532672ce943341893aa5c1 Mon Sep 17 00:00:00 2001 From: Graham Aitken Date: Thu, 11 Jul 2024 13:54:50 +0100 Subject: [PATCH 002/111] Move about page seed quote mark-up to the WYSIWYG block --- storage/app/seeds/pages.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/storage/app/seeds/pages.php b/storage/app/seeds/pages.php index 76957498..757b3f99 100644 --- a/storage/app/seeds/pages.php +++ b/storage/app/seeds/pages.php @@ -76,9 +76,6 @@ 'slug' => 'about', 'title' => 'About', 'subtitle' => config('app.name'), - 'content' => ' -

"Laravel Breeze variant with Vue, Inertia & Tailwind"

- ', 'meta_title' => 'About', 'meta_description' => config('metadata.description'), 'template' => WebpageTemplate::PUBLIC_CONTENT->value, @@ -87,6 +84,11 @@ 'type' => BlockType::WYSIWYG->value, 'data' => json_encode([ 'html' => ' +
+

+ “Laravel Breeze variant with Vue, Inertia & Tailwind”  +

+

Bassform is a light-weight template for scaffolding Laravel apps, From 0e585e987a36b4de5d8cedf0c0e2350e069aea98 Mon Sep 17 00:00:00 2001 From: Graham Aitken Date: Thu, 11 Jul 2024 13:56:07 +0100 Subject: [PATCH 003/111] Update InputWysiwyg component wrapper element & styling --- resources/js/Components/Forms/Inputs/InputWysiwyg.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/Components/Forms/Inputs/InputWysiwyg.vue b/resources/js/Components/Forms/Inputs/InputWysiwyg.vue index c42214db..0082f99f 100644 --- a/resources/js/Components/Forms/Inputs/InputWysiwyg.vue +++ b/resources/js/Components/Forms/Inputs/InputWysiwyg.vue @@ -86,12 +86,12 @@ Editor