Skip to content

Commit 6531dde

Browse files
Merge pull request #605 from LeviSnoot/streams-button
feat: add streams button
2 parents a6e186e + b3533d8 commit 6531dde

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

assets/linkstack/css/brands.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,6 +987,16 @@ button.button-scribd{
987987
filter: brightness(90%);
988988
}
989989

990+
/* Streams */
991+
.button.button-streams {
992+
color: #0000FF;
993+
background-color: #FFFFFF;
994+
}
995+
.button.button-streams:hover,
996+
.button.button-streams:focus {
997+
filter: brightness(90%);
998+
}
999+
9901000
/* Telegram */
9911001
.button.button-telegram {
9921002
color: #FFFFFF;
@@ -1204,4 +1214,4 @@ button.button-scribd{
12041214
.button.button-linkstack:hover,
12051215
.button.button-linkstack:focus {
12061216
filter: brightness(90%);
1207-
}
1217+
}

assets/linkstack/icons/streams.svg

Lines changed: 7 additions & 0 deletions
Loading

config/button-names.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
'picarto' => 'Picarto',
2727
'playstore' => 'Google Play',
2828
'soundcloud' => 'SoundCloud',
29+
'streams' => 'Streams',
2930
'tiktok' => 'TikTok',
3031
'trakt' => 'Trakt',
3132
'vrchat' => 'VRChat',
3233
'whatsapp' => 'WhatsApp',
3334
'wordpress' => 'WordPress',
3435
'youtube' => 'YouTube',
3536
'youtube-music' => 'YouTube Music',
36-
);
37+
);

database/seeders/ButtonSeeder.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,12 @@ public function run()
441441
[
442442
'name' => 'firefish'
443443
],
444+
445+
[
446+
'name' => 'streams'
447+
],
444448
];
445449

446450
Button::insert($buttons);
447451
}
448-
}
452+
}

resources/views/littlelink.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
{{-- Fediverse rel="me" links --}}
99
@php
10-
$relMe = "mastodon, firefish";
10+
$relMe = "mastodon, firefish, streams";
1111
$relMeList = explode(', ', $relMe);
1212
@endphp
1313

0 commit comments

Comments
 (0)