diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index abb3960..41c786c 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -477,6 +477,16 @@ button:hover, filter: brightness(90%); } +/* FurAffinity */ +.button.button-furaffinity { + color: #FFFFFF; + background-color: #FAAF3A; +} +.button.button-furaffinity:hover, +.button.button-furaffinity:focus { + filter: brightness(90%); +} + /* Github */ .button.button-github { color: #FFFFFF; @@ -542,6 +552,16 @@ button:hover, filter: brightness(90%); } +/* Itaku */ +.button.button-itaku { + color: #000; + background-color: #ffeb3b; +} +.button.button-itaku:hover, +.button.button-itaku:focus { + filter: brightness(90%); +} + /* itch.io */ .button.button-itchio { color: #ffffff; @@ -582,6 +602,16 @@ button:hover, filter: brightness(90%); } +/* last.fm */ +.button.button-last-fm { + color: #ffffff; + background-color: #b90000; +} +.button.button-last-fm:hover, +.button.button-last-fm:focus { + filter: brightness(90%); +} + /* Lemmy */ .button.button-lemmy { color: #000000; diff --git a/assets/linkstack/icons/furaffinity.svg b/assets/linkstack/icons/furaffinity.svg new file mode 100644 index 0000000..e937db7 --- /dev/null +++ b/assets/linkstack/icons/furaffinity.svg @@ -0,0 +1,78 @@ + \ No newline at end of file diff --git a/assets/linkstack/icons/itaku.svg b/assets/linkstack/icons/itaku.svg new file mode 100644 index 0000000..b43a33f --- /dev/null +++ b/assets/linkstack/icons/itaku.svg @@ -0,0 +1,14 @@ + \ No newline at end of file diff --git a/assets/linkstack/icons/last-fm.svg b/assets/linkstack/icons/last-fm.svg new file mode 100644 index 0000000..ec6417c --- /dev/null +++ b/assets/linkstack/icons/last-fm.svg @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/config/button-names.php b/config/button-names.php index 4502bc2..872e24e 100644 --- a/config/button-names.php +++ b/config/button-names.php @@ -11,9 +11,12 @@ $buttonNames = array( 'dev-to' => 'DEV', 'epic-games' => 'Epic Games', 'f-droid' => 'F-Droid', + 'furaffinity' => 'FurAffinity', 'github' => 'GitHub', 'gitlab' => 'GitLab', + 'itaku' => 'Itaku', 'itchio' => 'itch.io', + 'last-fm' => 'last.fm', 'linkedin' => 'linkedIn', 'linkstack' => 'LinkStack', 'openstreetmap' => 'OpenStreetMap', diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index 4fb366b..8a51738 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -421,6 +421,15 @@ class ButtonSeeder extends Seeder [ 'name' => 'trakt' ], + [ + 'name' => 'last-fm' + ], + [ + 'name' => 'itaku' + ], + [ + 'name' => 'furaffinity' + ], ]; Button::insert($buttons);