diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index 41c786c..9117a2b 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -430,6 +430,23 @@ button:hover, filter: brightness(90%); } +/* Firefish */ +.button.button-firefish { + color: #fff; + background-image: linear-gradient( + 45deg, + #DB44DB, + 1%, + #EC476D, + 80%, + #F6AE4A + ); +} +.button.button-firefish:hover, +.button.button-firefish:focus { + filter: brightness(90%); +} + /* Firefox */ .button.button-firefox { color: #FFFFFF; diff --git a/assets/linkstack/icons/firefish.svg b/assets/linkstack/icons/firefish.svg new file mode 100644 index 0000000..cfaa654 --- /dev/null +++ b/assets/linkstack/icons/firefish.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/config/button-names.php b/config/button-names.php index 872e24e..46c3a4a 100644 --- a/config/button-names.php +++ b/config/button-names.php @@ -11,6 +11,7 @@ $buttonNames = array( 'dev-to' => 'DEV', 'epic-games' => 'Epic Games', 'f-droid' => 'F-Droid', + 'firefish' => 'Firefish', 'furaffinity' => 'FurAffinity', 'github' => 'GitHub', 'gitlab' => 'GitLab', diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index 8a51738..4c13aed 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -421,15 +421,22 @@ class ButtonSeeder extends Seeder [ 'name' => 'trakt' ], + [ 'name' => 'last-fm' ], + [ 'name' => 'itaku' ], + [ 'name' => 'furaffinity' ], + + [ + 'name' => 'firefish' + ], ]; Button::insert($buttons); diff --git a/resources/views/littlelink.blade.php b/resources/views/littlelink.blade.php index 897dd42..392de20 100644 --- a/resources/views/littlelink.blade.php +++ b/resources/views/littlelink.blade.php @@ -5,12 +5,19 @@ -{{-- Mastodon re="me" link --}} +{{-- Mastodon rel="me" link --}} @foreach($links as $link) @if($link->name === "mastodon") @endif @endforeach + +{{-- Firefish rel="me" link --}} +@foreach($links as $link) + @if($link->name === "firefish") + + @endif +@endforeach