From ff7d607e2a47b71f6fcbebd44dd87a779102f790 Mon Sep 17 00:00:00 2001 From: Levi Date: Mon, 14 Aug 2023 01:20:15 +0200 Subject: [PATCH 1/3] (feat) last.fm button --- assets/linkstack/css/brands.css | 10 ++++++++++ assets/linkstack/icons/last-fm.svg | 21 +++++++++++++++++++++ config/button-names.php | 1 + database/seeders/ButtonSeeder.php | 3 +++ 4 files changed, 35 insertions(+) create mode 100644 assets/linkstack/icons/last-fm.svg diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index abb3960..ca63fd3 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -582,6 +582,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/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..938504b 100644 --- a/config/button-names.php +++ b/config/button-names.php @@ -14,6 +14,7 @@ $buttonNames = array( 'github' => 'GitHub', 'gitlab' => 'GitLab', '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..629eec4 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -421,6 +421,9 @@ class ButtonSeeder extends Seeder [ 'name' => 'trakt' ], + [ + 'name' => 'last-fm' + ], ]; Button::insert($buttons); From 28bcc13673ec20114b5a3f01e4d0b7898c270aa4 Mon Sep 17 00:00:00 2001 From: Levi Date: Mon, 14 Aug 2023 01:32:52 +0200 Subject: [PATCH 2/3] (feat) itaku.ee button --- assets/linkstack/css/brands.css | 10 ++++++++++ assets/linkstack/icons/itaku.svg | 14 ++++++++++++++ config/button-names.php | 3 ++- database/seeders/ButtonSeeder.php | 3 +++ 4 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 assets/linkstack/icons/itaku.svg diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index ca63fd3..1759fc9 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -542,6 +542,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; 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/config/button-names.php b/config/button-names.php index 938504b..53230f5 100644 --- a/config/button-names.php +++ b/config/button-names.php @@ -13,8 +13,9 @@ $buttonNames = array( 'f-droid' => 'F-Droid', 'github' => 'GitHub', 'gitlab' => 'GitLab', + 'itaku' => 'Itaku', 'itchio' => 'itch.io', - 'last-fm' => 'last.fm' + 'last-fm' => 'last.fm', 'linkedin' => 'linkedIn', 'linkstack' => 'LinkStack', 'openstreetmap' => 'OpenStreetMap', diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index 629eec4..8587a16 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -424,6 +424,9 @@ class ButtonSeeder extends Seeder [ 'name' => 'last-fm' ], + [ + 'name' => 'itaku' + ], ]; Button::insert($buttons); From 9e7837e842e793c862355784acbec5f52836922c Mon Sep 17 00:00:00 2001 From: Levi Date: Mon, 14 Aug 2023 01:41:07 +0200 Subject: [PATCH 3/3] (feat) furaffinity.net button --- assets/linkstack/css/brands.css | 10 ++++ assets/linkstack/icons/furaffinity.svg | 78 ++++++++++++++++++++++++++ config/button-names.php | 1 + database/seeders/ButtonSeeder.php | 3 + 4 files changed, 92 insertions(+) create mode 100644 assets/linkstack/icons/furaffinity.svg diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index 1759fc9..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; 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/config/button-names.php b/config/button-names.php index 53230f5..872e24e 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', + 'furaffinity' => 'FurAffinity', 'github' => 'GitHub', 'gitlab' => 'GitLab', 'itaku' => 'Itaku', diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index 8587a16..8a51738 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -427,6 +427,9 @@ class ButtonSeeder extends Seeder [ 'name' => 'itaku' ], + [ + 'name' => 'furaffinity' + ], ]; Button::insert($buttons);