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);