Skip to content

Commit 98908ba

Browse files
author
FinnTheFoxxo
committed
Added Simplex Button
1 parent 435dc7b commit 98908ba

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

assets/linkstack/css/brands.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,16 @@ button.button-scribd{
991991
filter: brightness(90%);
992992
}
993993

994+
/* Simplex */
995+
.button.button-simplex {
996+
color: #ffffff;
997+
background-color: #0e2b57;
998+
}
999+
.button.button-simplex:hover,
1000+
.button.button-simplex:focus {
1001+
filter: brightness(90%);
1002+
}
1003+
9941004
/* Skoob */
9951005
.button.button-skoob {
9961006
color: #FFFFFF;

assets/linkstack/icons/simplex.svg

Lines changed: 10 additions & 0 deletions
Loading

config/button-names.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
'picarto' => 'Picarto',
2727
'playstore' => 'Google Play',
2828
'soundcloud' => 'SoundCloud',
29+
'simplex' => 'Simplex',
2930
'streams' => 'Streams',
3031
'tiktok' => 'TikTok',
3132
'trakt' => 'Trakt',

database/seeders/ButtonSeeder.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,15 @@ public function run()
929929
"group" => "default",
930930
"mb" => false,
931931
],
932+
933+
[
934+
"name" => "simplex",
935+
"alt" => "Simplex",
936+
"exclude" => false,
937+
"group" => "default",
938+
"mb" => false,
939+
],
940+
932941
];
933942

934943
Button::insert($buttons);

0 commit comments

Comments
 (0)