diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index e3a57d2..3e898db 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -991,6 +991,16 @@ button.button-scribd{ filter: brightness(90%); } +/* Simplex */ +.button.button-simplex { + color: #ffffff; + background-color: #0e2b57; +} +.button.button-simplex:hover, +.button.button-simplex:focus { + filter: brightness(90%); +} + /* Skoob */ .button.button-skoob { color: #FFFFFF; diff --git a/assets/linkstack/icons/simplex.svg b/assets/linkstack/icons/simplex.svg new file mode 100644 index 0000000..fa598ac --- /dev/null +++ b/assets/linkstack/icons/simplex.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/config/button-names.php b/config/button-names.php index d450baa..822b6ff 100644 --- a/config/button-names.php +++ b/config/button-names.php @@ -26,6 +26,7 @@ $buttonNames = array( 'picarto' => 'Picarto', 'playstore' => 'Google Play', 'soundcloud' => 'SoundCloud', + 'simplex' => 'Simplex', 'streams' => 'Streams', 'tiktok' => 'TikTok', 'trakt' => 'Trakt', diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index df2f023..ba2fb0e 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -929,6 +929,15 @@ class ButtonSeeder extends Seeder "group" => "default", "mb" => false, ], + + [ + "name" => "simplex", + "alt" => "Simplex", + "exclude" => false, + "group" => "default", + "mb" => false, + ], + ]; Button::insert($buttons);