change fontawesome kit

This commit is contained in:
HolgerHatGarKeineNode
2023-08-10 12:46:42 +02:00
parent da2c84abc8
commit 1c129447db
68 changed files with 213 additions and 213 deletions

View File

@@ -2,7 +2,7 @@
<div>
@if(str($row->value)->contains('http'))
<x-button xs amber :href="$row->value" target="_blank">
<i class="fa fa-solid fa-book-open mr-2"></i>
<i class="fa fa-thin fa-book-open mr-2"></i>
{{ __('Open') }}
</x-button>
@endif
@@ -10,7 +10,7 @@
<div>
@if($row->type === 'downloadable_file')
<x-button xs amber :href="$row->getFirstMediaUrl('single_file')" target="_blank">
<i class="fa fa-solid fa-download mr-2"></i>
<i class="fa fa-thin fa-download mr-2"></i>
{{ __('Download') }}
</x-button>
@endif
@@ -18,7 +18,7 @@
<div>
@if($row->type === 'podcast_episode')
<x-button xs amber :href="$row->episode->data['link']" target="_blank">
<i class="fa fa-solid fa-headphones mr-2"></i>
<i class="fa fa-thin fa-headphones mr-2"></i>
{{ __('Listen') }}
</x-button>
@endif
@@ -26,7 +26,7 @@
<div>
@if($row->type === 'markdown_article')
<x-button xs amber :href="route('article.view', [$row])">
<i class="fa fa-solid fa-newspaper mr-2"></i>
<i class="fa fa-thin fa-newspaper mr-2"></i>
{{ __('Read') }}
</x-button>
@endif
@@ -40,7 +40,7 @@
}"
@click.prevent="window.navigator.clipboard.writeText(textToCopy);window.$wireui.notify({title:'{{ __('Share url copied!') }}',icon:'success'});"
xs black>
<i class="fa fa-solid fa-copy mr-2"></i>
<i class="fa fa-thin fa-copy mr-2"></i>
{{ __('Share link') }}
</x-button>
@else
@@ -50,7 +50,7 @@
}"
@click.prevent="window.navigator.clipboard.writeText(textToCopy);window.$wireui.notify({title:'{{ __('Share url copied!') }}',icon:'success'});"
xs black>
<i class="fa fa-solid fa-copy mr-2"></i>
<i class="fa fa-thin fa-copy mr-2"></i>
{{ __('Share link') }}
</x-button>
@endif