From a1bce31e8850c116e707a7fa76374b1291c5ddb8 Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Fri, 15 Dec 2023 04:31:07 +0300 Subject: [PATCH 1/2] change the class from custom to primary --- .../themes/another-portfolio/bolt/list-forms.blade.php | 2 +- .../themes/another-portfolio/bolt/show-entry.blade.php | 4 ++-- .../views/themes/another-portfolio/rain/layouts.blade.php | 2 +- .../another-portfolio/rain/widgets/LibraryWidget.blade.php | 2 +- .../another-portfolio/rain/widgets/MenuWidget.blade.php | 4 ++-- .../views/themes/another-portfolio/sky/addons/faq.blade.php | 2 +- .../themes/another-portfolio/sky/partial/empty.blade.php | 4 ++-- .../themes/another-portfolio/wind/departments.blade.php | 2 +- resources/views/themes/breeze/bolt/list-forms.blade.php | 2 +- resources/views/themes/breeze/bolt/show-entry.blade.php | 4 ++-- resources/views/themes/breeze/rain/layouts.blade.php | 2 +- .../themes/breeze/rain/widgets/LibraryWidget.blade.php | 2 +- .../views/themes/breeze/rain/widgets/MenuWidget.blade.php | 6 +++--- resources/views/themes/breeze/sky/addons/faq.blade.php | 2 +- resources/views/themes/breeze/sky/addons/library.blade.php | 2 +- resources/views/themes/breeze/sky/home.blade.php | 2 +- resources/views/themes/breeze/sky/partial/empty.blade.php | 4 ++-- resources/views/themes/breeze/wind/departments.blade.php | 2 +- resources/views/themes/daisy/rain/layouts.blade.php | 2 +- .../views/themes/daisy/rain/widgets/LibraryWidget.blade.php | 2 +- .../views/themes/daisy/rain/widgets/MenuWidget.blade.php | 6 +++--- resources/views/themes/daisy/sky/addons/faq.blade.php | 2 +- resources/views/themes/daisy/sky/addons/library.blade.php | 2 +- resources/views/themes/daisy/sky/home.blade.php | 2 +- resources/views/themes/daisy/sky/partial/empty.blade.php | 4 ++-- resources/views/themes/daisy/wind/departments.blade.php | 2 +- tailwind-breeze.config.js | 4 ++-- 27 files changed, 38 insertions(+), 38 deletions(-) diff --git a/resources/views/themes/another-portfolio/bolt/list-forms.blade.php b/resources/views/themes/another-portfolio/bolt/list-forms.blade.php index 07f171c..c8ed161 100644 --- a/resources/views/themes/another-portfolio/bolt/list-forms.blade.php +++ b/resources/views/themes/another-portfolio/bolt/list-forms.blade.php @@ -29,7 +29,7 @@ {{ $form->name ?? '' }} - + {{ $form->description }} diff --git a/resources/views/themes/another-portfolio/bolt/show-entry.blade.php b/resources/views/themes/another-portfolio/bolt/show-entry.blade.php index 68f1697..fc07c8f 100644 --- a/resources/views/themes/another-portfolio/bolt/show-entry.blade.php +++ b/resources/views/themes/another-portfolio/bolt/show-entry.blade.php @@ -31,7 +31,7 @@
- + {{ __('User Details') }}

@@ -51,7 +51,7 @@

-

{{ __('Entry Details') }}

+

{{ __('Entry Details') }}

diff --git a/resources/views/themes/another-portfolio/rain/layouts.blade.php b/resources/views/themes/another-portfolio/rain/layouts.blade.php index fc4d3d0..9ed47f7 100644 --- a/resources/views/themes/another-portfolio/rain/layouts.blade.php +++ b/resources/views/themes/another-portfolio/rain/layouts.blade.php @@ -1,7 +1,7 @@
@if($layout->widgets !== null)
- @foreach (\LaraZeus\Rain\Models\Columns::all() as $column) + @foreach (\LaraZeus\DynamicDashboard\Models\Columns::all() as $column)
@if(isset($layout->widgets[$column->key])) @php diff --git a/resources/views/themes/another-portfolio/rain/widgets/LibraryWidget.blade.php b/resources/views/themes/another-portfolio/rain/widgets/LibraryWidget.blade.php index 3c176f3..6e8bf7f 100644 --- a/resources/views/themes/another-portfolio/rain/widgets/LibraryWidget.blade.php +++ b/resources/views/themes/another-portfolio/rain/widgets/LibraryWidget.blade.php @@ -23,7 +23,7 @@ @endif
- + {{ $library->description }} diff --git a/resources/views/themes/another-portfolio/rain/widgets/MenuWidget.blade.php b/resources/views/themes/another-portfolio/rain/widgets/MenuWidget.blade.php index 91b27cb..e199153 100644 --- a/resources/views/themes/another-portfolio/rain/widgets/MenuWidget.blade.php +++ b/resources/views/themes/another-portfolio/rain/widgets/MenuWidget.blade.php @@ -9,7 +9,7 @@
    @foreach($nav as $item)
  • - {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'text-gray-500 hover:text-primary-500 hover:bg-custom-50 group flex gap-x-3 rounded-3xl p-2 pl-3 text-sm transition-all ease-in-out duration-300') !!} + {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'text-gray-500 hover:text-primary-500 hover:bg-primary-50 group flex gap-x-3 rounded-3xl p-2 pl-3 text-sm transition-all ease-in-out duration-300') !!}
  • @endforeach
@@ -22,7 +22,7 @@ {{ $item['label'] }} @foreach($item['children'] as $children) - {!! \LaraZeus\Sky\Classes\RenderNavItem::render($children,'block px-4 py-2 text-sm leading-5 text-primary-500 hover:bg-custom-100 focus:outline-none focus:bg-gray-100 transition-all ease-in-out duration-300') !!} + {!! \LaraZeus\Sky\Classes\RenderNavItem::render($children,'block px-4 py-2 text-sm leading-5 text-primary-500 hover:bg-primary-100 focus:outline-none focus:bg-gray-100 transition-all ease-in-out duration-300') !!} @endforeach @else {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'px-5 py-2 text-base font-medium text-gray-500 hover:text-primary-500 transition-all ease-in-out duration-300') !!} diff --git a/resources/views/themes/another-portfolio/sky/addons/faq.blade.php b/resources/views/themes/another-portfolio/sky/addons/faq.blade.php index 58255d6..3113b33 100644 --- a/resources/views/themes/another-portfolio/sky/addons/faq.blade.php +++ b/resources/views/themes/another-portfolio/sky/addons/faq.blade.php @@ -19,7 +19,7 @@ @foreach($faqs as $faq)
- + {{ $faq->question }} diff --git a/resources/views/themes/another-portfolio/sky/partial/empty.blade.php b/resources/views/themes/another-portfolio/sky/partial/empty.blade.php index ca18aa0..2873ae1 100644 --- a/resources/views/themes/another-portfolio/sky/partial/empty.blade.php +++ b/resources/views/themes/another-portfolio/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/resources/views/themes/another-portfolio/wind/departments.blade.php b/resources/views/themes/another-portfolio/wind/departments.blade.php index 9dc1c7d..13fc113 100644 --- a/resources/views/themes/another-portfolio/wind/departments.blade.php +++ b/resources/views/themes/another-portfolio/wind/departments.blade.php @@ -23,7 +23,7 @@
diff --git a/resources/views/themes/breeze/bolt/show-entry.blade.php b/resources/views/themes/breeze/bolt/show-entry.blade.php index fa472a2..bb50f2c 100644 --- a/resources/views/themes/breeze/bolt/show-entry.blade.php +++ b/resources/views/themes/breeze/bolt/show-entry.blade.php @@ -31,7 +31,7 @@
- + {{ __('User Details') }}

@@ -51,7 +51,7 @@

-

{{ __('Entry Details') }}

+

{{ __('Entry Details') }}

diff --git a/resources/views/themes/breeze/rain/layouts.blade.php b/resources/views/themes/breeze/rain/layouts.blade.php index 72a8eb6..0d6e436 100644 --- a/resources/views/themes/breeze/rain/layouts.blade.php +++ b/resources/views/themes/breeze/rain/layouts.blade.php @@ -1,7 +1,7 @@
@if($layout->widgets !== null)
- @foreach (\LaraZeus\Rain\Models\Columns::all() as $column) + @foreach (\LaraZeus\DynamicDashboard\Models\Columns::all() as $column)
@if(isset($layout->widgets[$column->key])) @php diff --git a/resources/views/themes/breeze/rain/widgets/LibraryWidget.blade.php b/resources/views/themes/breeze/rain/widgets/LibraryWidget.blade.php index 24964f6..f9bd9f8 100644 --- a/resources/views/themes/breeze/rain/widgets/LibraryWidget.blade.php +++ b/resources/views/themes/breeze/rain/widgets/LibraryWidget.blade.php @@ -22,7 +22,7 @@ @endif
- + {{ $library->description }} diff --git a/resources/views/themes/breeze/rain/widgets/MenuWidget.blade.php b/resources/views/themes/breeze/rain/widgets/MenuWidget.blade.php index 7462edf..4c05c5f 100644 --- a/resources/views/themes/breeze/rain/widgets/MenuWidget.blade.php +++ b/resources/views/themes/breeze/rain/widgets/MenuWidget.blade.php @@ -9,7 +9,7 @@
    @foreach($nav as $item)
  • - {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'text-gray-700 hover:text-custom-600 hover:bg-custom-50 group flex gap-x-3 rounded-3xl p-2 pl-3 text-sm transition-all ease-in-out duration-300') !!} + {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'text-gray-700 hover:text-primary-600 hover:bg-primary-50 group flex gap-x-3 rounded-3xl p-2 pl-3 text-sm transition-all ease-in-out duration-300') !!}
  • @endforeach
@@ -22,10 +22,10 @@ {{ $item['label'] }} @foreach($item['children'] as $children) - {!! \LaraZeus\Sky\Classes\RenderNavItem::render($children,'block px-4 py-2 text-sm leading-5 text-primary-500 hover:bg-custom-100 focus:outline-none focus:bg-gray-100 transition-all ease-in-out duration-300') !!} + {!! \LaraZeus\Sky\Classes\RenderNavItem::render($children,'block px-4 py-2 text-sm leading-5 text-primary-500 hover:bg-primary-100 focus:outline-none focus:bg-gray-100 transition-all ease-in-out duration-300') !!} @endforeach @else - {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'px-5 py-2 text-base font-medium text-primary-500 hover:text-custom-800 transition-all ease-in-out duration-300') !!} + {!! \LaraZeus\Sky\Classes\RenderNavItem::render($item,'px-5 py-2 text-base font-medium text-primary-500 hover:text-primary-800 transition-all ease-in-out duration-300') !!} @endif @endforeach
diff --git a/resources/views/themes/breeze/sky/addons/faq.blade.php b/resources/views/themes/breeze/sky/addons/faq.blade.php index 159fd3f..f4a93c0 100644 --- a/resources/views/themes/breeze/sky/addons/faq.blade.php +++ b/resources/views/themes/breeze/sky/addons/faq.blade.php @@ -8,7 +8,7 @@ @foreach($faqs as $faq) - + {{ $library->description }} diff --git a/resources/views/themes/breeze/sky/home.blade.php b/resources/views/themes/breeze/sky/home.blade.php index 95bc8a0..bc97cc4 100644 --- a/resources/views/themes/breeze/sky/home.blade.php +++ b/resources/views/themes/breeze/sky/home.blade.php @@ -14,7 +14,7 @@ @if(request()->filled('search')) {{ __('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 @each($skyTheme.'.partial.post', $posts, 'post') diff --git a/resources/views/themes/breeze/sky/partial/empty.blade.php b/resources/views/themes/breeze/sky/partial/empty.blade.php index ca18aa0..2873ae1 100644 --- a/resources/views/themes/breeze/sky/partial/empty.blade.php +++ b/resources/views/themes/breeze/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/resources/views/themes/breeze/wind/departments.blade.php b/resources/views/themes/breeze/wind/departments.blade.php index 3b933df..e9892cc 100644 --- a/resources/views/themes/breeze/wind/departments.blade.php +++ b/resources/views/themes/breeze/wind/departments.blade.php @@ -23,7 +23,7 @@