diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index 3fdb4a4..aa0309a 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -1308,3 +1308,22 @@ button.button-scribd{ .button.button-linkstack:focus { filter: brightness(90%); } +/* Xbox */ +.button.button-xbox { + color: #FFFFFF; + background-color: #0e7a0d + ; +} +.button.button-xbox:hover, +.button.button-xbox:focus { + filter: brightness(90%); +} +/* Threads */ +.button.button-threads { + color: #FFFFFF; + background-color: #000000; +} +.button.button-threads:hover, +.button.button-threads:focus { + filter: brightness(90%); +} \ No newline at end of file diff --git a/assets/linkstack/icons/threads.svg b/assets/linkstack/icons/threads.svg new file mode 100644 index 0000000..d0dab5b --- /dev/null +++ b/assets/linkstack/icons/threads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/linkstack/icons/xbox.svg b/assets/linkstack/icons/xbox.svg new file mode 100644 index 0000000..a01e806 --- /dev/null +++ b/assets/linkstack/icons/xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index c638f9c..0d726d8 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -938,6 +938,21 @@ class ButtonSeeder extends Seeder "mb" => false, ], + [ + "name" => "xbox", + "alt" => "Xbox", + "exclude" => false, + "group" => "default", + "mb" => false, + ], + + [ + "name" => "threads", + "alt" => "Threads", + "exclude" => false, + "group" => "default", + "mb" => false, + ], ]; Button::insert($buttons); diff --git a/resources/views/studio/links.blade.php b/resources/views/studio/links.blade.php index 1e9e642..68fecb0 100755 --- a/resources/views/studio/links.blade.php +++ b/resources/views/studio/links.blade.php @@ -322,6 +322,9 @@ if (isset($_COOKIE['LinkCount'])) { {!! icon('dribbble', 'Dribble') !!} {!! icon('bluesky', 'Bluesky') !!} + + {!! icon('threads', 'Threads') !!} +