Skip to content

Commit 07df443

Browse files
author
Matthew O
committed
Add threads Button
1 parent 70a5922 commit 07df443

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

assets/linkstack/css/brands.css

+9
Original file line numberDiff line numberDiff line change
@@ -1317,4 +1317,13 @@ button.button-scribd{
13171317
.button.button-xbox:hover,
13181318
.button.button-xbox:focus {
13191319
filter: brightness(90%);
1320+
}
1321+
/* Threads */
1322+
.button.button-threads {
1323+
color: #FFFFFF;
1324+
background-color: #000000;
1325+
}
1326+
.button.button-threads:hover,
1327+
.button.button-threads:focus {
1328+
filter: brightness(90%);
13201329
}

assets/linkstack/icons/threads.svg

+1
Loading

database/seeders/ButtonSeeder.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -937,14 +937,22 @@ public function run()
937937
"group" => "default",
938938
"mb" => false,
939939
],
940-
940+
941941
[
942942
"name" => "xbox",
943943
"alt" => "Xbox",
944944
"exclude" => false,
945945
"group" => "default",
946946
"mb" => false,
947947
],
948+
949+
[
950+
"name" => "threads",
951+
"alt" => "Threads",
952+
"exclude" => false,
953+
"group" => "default",
954+
"mb" => false,
955+
],
948956
];
949957

950958
Button::insert($buttons);

0 commit comments

Comments
 (0)