Skip to content

Commit 5cba3fa

Browse files
Merge pull request #498 from LeviSnoot/main
feat: add picarto and trakt buttons
2 parents 8a81e3c + 0c02bd7 commit 5cba3fa

File tree

5 files changed

+78
-0
lines changed

5 files changed

+78
-0
lines changed

assets/linkstack/css/brands.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,16 @@ button:hover,
756756
filter: brightness(90%);
757757
}
758758

759+
/* Picarto */
760+
.button.button-picarto {
761+
color: #ffffff;
762+
background-color: #4aba8a;
763+
}
764+
.button.button-picarto:hover,
765+
.button.button-picarto:focus {
766+
filter: brightness(90%);
767+
}
768+
759769
/* Pinterest */
760770
.button.button-pinterest {
761771
color: #000000;
@@ -946,6 +956,16 @@ button.button-scribd{
946956
filter: brightness(90%);
947957
}
948958

959+
/* Trakt */
960+
.button.button-trakt {
961+
color: #ffffff;
962+
background-color: #ed1d24;
963+
}
964+
.button.button-trakt:hover,
965+
.button.button-trakt:focus {
966+
filter: brightness(90%);
967+
}
968+
949969
/* Trello */
950970
.button.button-trello {
951971
color: #ffffff;

assets/linkstack/icons/picarto.svg

Lines changed: 13 additions & 0 deletions
Loading

assets/linkstack/icons/trakt.svg

Lines changed: 35 additions & 0 deletions
Loading

config/button-names.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
'linkstack' => 'LinkStack',
1919
'openstreetmap' => 'OpenStreetMap',
2020
'paypal' => 'PayPal',
21+
'picarto' => 'Picarto',
2122
'playstore' => 'Google Play',
2223
'soundcloud' => 'SoundCloud',
2324
'tiktok' => 'TikTok',
25+
'trakt' => 'Trakt',
2426
'vrchat' => 'VRChat',
2527
'whatsapp' => 'WhatsApp',
2628
'wordpress' => 'WordPress',

database/seeders/ButtonSeeder.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,14 @@ public function run()
413413
[
414414
'name' => 'linkstack'
415415
],
416+
417+
[
418+
'name' => 'picarto'
419+
],
420+
421+
[
422+
'name' => 'trakt'
423+
],
416424
];
417425

418426
Button::insert($buttons);

0 commit comments

Comments
 (0)