Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update class custom to primary #182

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/views/filament/columns/post-title.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@if($getRecord()->sticky_until !== null)
<span x-tooltip.raw="{{ __('Sticky Until') }} {{ $getRecord()->sticky_until->diffForHumans() }}" title="{{ __('Sticky Until') }} {{ $getRecord()->sticky_until->diffForHumans() }}">
@svg('iconpark-pin','w-4 h-4 inline-flex text-custom-600')
@svg('iconpark-pin','w-4 h-4 inline-flex text-primary-600')
</span>
@endif

Expand Down
2 changes: 1 addition & 1 deletion resources/views/themes/zeus/sky/addons/faq.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@foreach($faqs as $faq)
<div class="bg-white dark:bg-gray-800 rounded-[2rem] rounded-bl-none rounded-tr-none shadow-md group">
<h5>
<a class="flex items-center justify-between w-full px-6 py-4 text-xl font-medium tracking-tight text-custom-600 dark:text-custom-200">
<a class="flex items-center justify-between w-full px-6 py-4 text-xl font-medium tracking-tight text-primary-600 dark:text-primary-200">
<span class="underline">
{{ $faq->question }}
</span>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/themes/zeus/sky/addons/library.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</span>
@endif
</div>
<cite class="text-sm text-custom-600 dark:text-custom-500 hover:dark:text-custom-300">
<cite class="text-sm text-primary-600 dark:text-primary-500 hover:dark:text-primary-300">
{{ $library->description }}
</cite>
</a>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/themes/zeus/sky/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="py-4">
{{ __('Showing Search result of') }}: <span class="highlight">{{ request('search') }}</span>
<a title="{{ __('clear') }}" href="{{ route('blogs') }}">
@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')
</a>
</div>
@endif
Expand Down
4 changes: 2 additions & 2 deletions resources/views/themes/zeus/sky/partial/empty.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="px-4 py-4 bg-gradient-to-br from-white via-white to-custom-50 shadow-lg rounded-3xl hover:shadow-xl transition ease-in-out duration-300 flex gap-2 items-center justify-center w-full h-72 border border-gray-100">
@svg('iconpark-wavesleft-o','h-10 w-10 text-custom-600')
<div class="px-4 py-4 bg-gradient-to-br from-white via-white to-primary-50 shadow-lg rounded-3xl hover:shadow-xl transition ease-in-out duration-300 flex gap-2 items-center justify-center w-full h-72 border border-gray-100">
@svg('iconpark-wavesleft-o','h-10 w-10 text-primary-600')
<span class="underline decoration-wavy underline-offset-4 decoration-primary-600">{{ __('No posts found') }}!</span>
</div>
2 changes: 1 addition & 1 deletion src/Models/PostStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
Loading