Skip to content

Commit da2660a

Browse files
committed
added Bluesky button
properly this time, as I've lately seen that there are many hard-coded button ids which failed when sorting Bluesky alphabetically between the others..
1 parent 74460ad commit da2660a

File tree

4 files changed

+34
-0
lines changed

4 files changed

+34
-0
lines changed

assets/linkstack/css/brands.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,17 @@ button:hover,
254254
filter: brightness(90%);
255255
}
256256

257+
/* Bluesky */
258+
.button.button-bluesky {
259+
color: #000000;
260+
background-color: #F3F9FF;
261+
border: 1px solid #212121;
262+
}
263+
.button.button-bluesky:hover,
264+
.button.button-bluesky:focus {
265+
filter: brightness(90%);
266+
}
267+
257268
/* Briar */
258269
.button.button-briar {
259270
color: #FFFFFF;

assets/linkstack/icons/bluesky.svg

Lines changed: 14 additions & 0 deletions
Loading

config/button-names.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
'apple-music' => 'Apple Music',
99
'apple-podcasts' => 'Apple Podcasts',
1010
'bookwyrm' => 'BookWyrm',
11+
'bluesky' => 'Bluesky',
1112
'dev-to' => 'DEV',
1213
'epic-games' => 'Epic Games',
1314
'f-droid' => 'F-Droid',

database/seeders/ButtonSeeder.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,15 +421,23 @@ public function run()
421421
[
422422
'name' => 'trakt'
423423
],
424+
424425
[
425426
'name' => 'last-fm'
426427
],
428+
427429
[
428430
'name' => 'itaku'
429431
],
432+
430433
[
431434
'name' => 'furaffinity'
432435
],
436+
437+
[
438+
'name' => 'bluesky'
439+
],
440+
433441
];
434442

435443
Button::insert($buttons);

0 commit comments

Comments
 (0)