Skip to content

Commit 99b4883

Browse files
committed
feat: add firefish button
1 parent 74460ad commit 99b4883

File tree

5 files changed

+54
-1
lines changed

5 files changed

+54
-1
lines changed

assets/linkstack/css/brands.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,23 @@ button:hover,
430430
filter: brightness(90%);
431431
}
432432

433+
/* Firefish */
434+
.button.button-firefish {
435+
color: #fff;
436+
background-image: linear-gradient(
437+
45deg,
438+
#DB44DB,
439+
1%,
440+
#EC476D,
441+
80%,
442+
#F6AE4A
443+
);
444+
}
445+
.button.button-firefish:hover,
446+
.button.button-firefish:focus {
447+
filter: brightness(90%);
448+
}
449+
433450
/* Firefox */
434451
.button.button-firefox {
435452
color: #FFFFFF;

assets/linkstack/icons/firefish.svg

Lines changed: 21 additions & 0 deletions
Loading

config/button-names.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
'dev-to' => 'DEV',
1212
'epic-games' => 'Epic Games',
1313
'f-droid' => 'F-Droid',
14+
'firefish' => 'Firefish',
1415
'furaffinity' => 'FurAffinity',
1516
'github' => 'GitHub',
1617
'gitlab' => 'GitLab',

database/seeders/ButtonSeeder.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,15 +421,22 @@ public function run()
421421
[
422422
'name' => 'trakt'
423423
],
424+
424425
[
425426
'name' => 'last-fm'
426427
],
428+
427429
[
428430
'name' => 'itaku'
429431
],
432+
430433
[
431434
'name' => 'furaffinity'
432435
],
436+
437+
[
438+
'name' => 'firefish'
439+
],
433440
];
434441

435442
Button::insert($buttons);

resources/views/littlelink.blade.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@
55
<head>
66
<meta charset="utf-8">
77

8-
{{-- Mastodon re="me" link --}}
8+
{{-- Mastodon rel="me" link --}}
99
@foreach($links as $link)
1010
@if($link->name === "mastodon")
1111
<link href="{{$link->link}}" rel="me">
1212
@endif
1313
@endforeach
14+
15+
{{-- Firefish rel="me" link --}}
16+
@foreach($links as $link)
17+
@if($link->name === "firefish")
18+
<link href="{{$link->link}}" rel="me">
19+
@endif
20+
@endforeach
1421

1522
<?php
1623
// Theme Config

0 commit comments

Comments
 (0)