Skip to content

Commit

Permalink
Merge pull request #605 from LeviSnoot/streams-button
Browse files Browse the repository at this point in the history
feat: add streams button
  • Loading branch information
JulianPrieber authored Oct 25, 2023
2 parents a6e186e + b3533d8 commit 6531dde
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
12 changes: 11 additions & 1 deletion assets/linkstack/css/brands.css
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,16 @@ button.button-scribd{
filter: brightness(90%);
}

/* Streams */
.button.button-streams {
color: #0000FF;
background-color: #FFFFFF;
}
.button.button-streams:hover,
.button.button-streams:focus {
filter: brightness(90%);
}

/* Telegram */
.button.button-telegram {
color: #FFFFFF;
Expand Down Expand Up @@ -1204,4 +1214,4 @@ button.button-scribd{
.button.button-linkstack:hover,
.button.button-linkstack:focus {
filter: brightness(90%);
}
}
7 changes: 7 additions & 0 deletions assets/linkstack/icons/streams.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion config/button-names.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
'picarto' => 'Picarto',
'playstore' => 'Google Play',
'soundcloud' => 'SoundCloud',
'streams' => 'Streams',
'tiktok' => 'TikTok',
'trakt' => 'Trakt',
'vrchat' => 'VRChat',
'whatsapp' => 'WhatsApp',
'wordpress' => 'WordPress',
'youtube' => 'YouTube',
'youtube-music' => 'YouTube Music',
);
);
6 changes: 5 additions & 1 deletion database/seeders/ButtonSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,12 @@ public function run()
[
'name' => 'firefish'
],

[
'name' => 'streams'
],
];

Button::insert($buttons);
}
}
}
2 changes: 1 addition & 1 deletion resources/views/littlelink.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

{{-- Fediverse rel="me" links --}}
@php
$relMe = "mastodon, firefish";
$relMe = "mastodon, firefish, streams";
$relMeList = explode(', ', $relMe);
@endphp

Expand Down

0 comments on commit 6531dde

Please sign in to comment.