diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index 667c0a04..b03628fe 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -1299,3 +1299,13 @@ button.button-scribd{ .button.button-linkstack:focus { filter: brightness(90%); } + +/* Xbox */ +.button.button-xbox { + color: #FFFFFF; + background-color: #107C11; +} +.button.button-xbox:hover, +.button.button-xbox:focus { + filter: brightness(90%); +} \ 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 00000000..a01e8060 --- /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 c638f9c3..b437c7ef 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -938,6 +938,13 @@ public function run() "mb" => false, ], + [ + "name" => "xbox", + "alt" => "Xbox", + "exclude" => false, + "group" => "default", + "mb" => false, + ], ]; Button::insert($buttons);