From 38d67b321cdf8472c262497c3c889699b8cfe966 Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Fri, 15 Dec 2023 04:57:29 +0300 Subject: [PATCH] update class custom to primary --- resources/views/filament/columns/post-title.blade.php | 2 +- resources/views/themes/zeus/sky/addons/faq.blade.php | 2 +- resources/views/themes/zeus/sky/addons/library.blade.php | 2 +- resources/views/themes/zeus/sky/home.blade.php | 2 +- resources/views/themes/zeus/sky/partial/empty.blade.php | 4 ++-- src/Models/PostStatus.php | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/views/filament/columns/post-title.blade.php b/resources/views/filament/columns/post-title.blade.php index 5f8f586..e799e7f 100644 --- a/resources/views/filament/columns/post-title.blade.php +++ b/resources/views/filament/columns/post-title.blade.php @@ -7,7 +7,7 @@ @if($getRecord()->sticky_until !== null) - @svg('iconpark-pin','w-4 h-4 inline-flex text-custom-600') + @svg('iconpark-pin','w-4 h-4 inline-flex text-primary-600') @endif diff --git a/resources/views/themes/zeus/sky/addons/faq.blade.php b/resources/views/themes/zeus/sky/addons/faq.blade.php index 2dfa592..b20fcff 100644 --- a/resources/views/themes/zeus/sky/addons/faq.blade.php +++ b/resources/views/themes/zeus/sky/addons/faq.blade.php @@ -18,7 +18,7 @@ @foreach($faqs as $faq)
- + {{ $faq->question }} diff --git a/resources/views/themes/zeus/sky/addons/library.blade.php b/resources/views/themes/zeus/sky/addons/library.blade.php index 126ae78..19b5727 100644 --- a/resources/views/themes/zeus/sky/addons/library.blade.php +++ b/resources/views/themes/zeus/sky/addons/library.blade.php @@ -38,7 +38,7 @@ @endif
- + {{ $library->description }} diff --git a/resources/views/themes/zeus/sky/home.blade.php b/resources/views/themes/zeus/sky/home.blade.php index 2fc5283..5be0af1 100644 --- a/resources/views/themes/zeus/sky/home.blade.php +++ b/resources/views/themes/zeus/sky/home.blade.php @@ -13,7 +13,7 @@
{{ __('Showing Search result of') }}: {{ request('search') }} - @svg('heroicon-o-backspace','text-custom-500 dark:text-custom-100 w-4 h-4 inline-flex align-middle') + @svg('heroicon-o-backspace','text-primary-500 dark:text-primary-100 w-4 h-4 inline-flex align-middle')
@endif diff --git a/resources/views/themes/zeus/sky/partial/empty.blade.php b/resources/views/themes/zeus/sky/partial/empty.blade.php index ca18aa0..2873ae1 100644 --- a/resources/views/themes/zeus/sky/partial/empty.blade.php +++ b/resources/views/themes/zeus/sky/partial/empty.blade.php @@ -1,4 +1,4 @@ -
- @svg('iconpark-wavesleft-o','h-10 w-10 text-custom-600') +
+ @svg('iconpark-wavesleft-o','h-10 w-10 text-primary-600') {{ __('No posts found') }}!
diff --git a/src/Models/PostStatus.php b/src/Models/PostStatus.php index 8b7298f..7a0cb93 100644 --- a/src/Models/PostStatus.php +++ b/src/Models/PostStatus.php @@ -19,7 +19,7 @@ public function getRows(): array return [ ['name' => 'publish', 'label' => __('Publish'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-success-700 bg-success-500/10', 'icon' => 'heroicon-o-check-badge'], ['name' => 'future', 'label' => __('Future'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-warning-700 bg-warning-500/10', 'icon' => 'heroicon-o-calendar-days'], - ['name' => 'draft', 'label' => __('Draft'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-custom-700 bg-custom-500/10', 'icon' => 'heroicon-o-document-magnifying-glass'], + ['name' => 'draft', 'label' => __('Draft'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-primary-700 bg-primary-500/10', 'icon' => 'heroicon-o-document-magnifying-glass'], ['name' => 'auto-draft', 'label' => __('Auto draft'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-info-700 bg-info-500/10', 'icon' => 'heroicon-o-document-magnifying-glass'], ['name' => 'pending', 'label' => __('Pending'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-info-700 bg-info-500/10', 'icon' => 'heroicon-o-document-minus'], ['name' => 'private', 'label' => __('Private'), 'class' => 'px-2 py-0.5 text-xs rounded-xl text-danger-700 bg-danger-500/10', 'icon' => 'heroicon-o-lock-closed'],