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..
This commit is contained in:
parent
74460ad378
commit
da2660ae01
|
@ -254,6 +254,17 @@ button:hover,
|
|||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Bluesky */
|
||||
.button.button-bluesky {
|
||||
color: #000000;
|
||||
background-color: #F3F9FF;
|
||||
border: 1px solid #212121;
|
||||
}
|
||||
.button.button-bluesky:hover,
|
||||
.button.button-bluesky:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Briar */
|
||||
.button.button-briar {
|
||||
color: #FFFFFF;
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1432_8560)">
|
||||
<path d="M20 0H4C1.79086 0 0 1.79086 0 4V20C0 22.2091 1.79086 24 4 24H20C22.2091 24 24 22.2091 24 20V4C24 1.79086 22.2091 0 20 0Z" fill="url(#paint0_linear_1432_8560)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1432_8560" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#0066FF"/>
|
||||
<stop offset="1" stop-color="#71C0FF"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1432_8560">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 614 B |
|
@ -8,6 +8,7 @@ $buttonNames = array(
|
|||
'apple-music' => 'Apple Music',
|
||||
'apple-podcasts' => 'Apple Podcasts',
|
||||
'bookwyrm' => 'BookWyrm',
|
||||
'bluesky' => 'Bluesky',
|
||||
'dev-to' => 'DEV',
|
||||
'epic-games' => 'Epic Games',
|
||||
'f-droid' => 'F-Droid',
|
||||
|
|
|
@ -421,15 +421,23 @@ class ButtonSeeder extends Seeder
|
|||
[
|
||||
'name' => 'trakt'
|
||||
],
|
||||
|
||||
[
|
||||
'name' => 'last-fm'
|
||||
],
|
||||
|
||||
[
|
||||
'name' => 'itaku'
|
||||
],
|
||||
|
||||
[
|
||||
'name' => 'furaffinity'
|
||||
],
|
||||
|
||||
[
|
||||
'name' => 'bluesky'
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Button::insert($buttons);
|
||||
|
|
Loading…
Reference in New Issue