Added button for BookWyrm
https://github.com/JulianPrieber/littlelink-custom/discussions/322
This commit is contained in:
parent
b3f0f7c8d1
commit
91e33a8dcd
|
@ -6,6 +6,7 @@ $buttonNames = array(
|
||||||
'appstore' => 'App Store',
|
'appstore' => 'App Store',
|
||||||
'apple-music' => 'Apple Music',
|
'apple-music' => 'Apple Music',
|
||||||
'apple-podcasts' => 'Apple Podcasts',
|
'apple-podcasts' => 'Apple Podcasts',
|
||||||
|
'bookwyrm' => 'BookWyrm',
|
||||||
'dev-to' => 'DEV',
|
'dev-to' => 'DEV',
|
||||||
'epic-games' => 'Epic Games',
|
'epic-games' => 'Epic Games',
|
||||||
'f-droid' => 'F-Droid',
|
'f-droid' => 'F-Droid',
|
||||||
|
|
|
@ -69,7 +69,6 @@ class ButtonSeeder extends Seeder
|
||||||
[
|
[
|
||||||
'name' => 'goodreads'
|
'name' => 'goodreads'
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
[
|
[
|
||||||
'name' => 'instagram'
|
'name' => 'instagram'
|
||||||
|
@ -222,6 +221,10 @@ class ButtonSeeder extends Seeder
|
||||||
[
|
[
|
||||||
'name' => 'apple-podcasts'
|
'name' => 'apple-podcasts'
|
||||||
],
|
],
|
||||||
|
|
||||||
|
[
|
||||||
|
'name' => 'bookwyrm'
|
||||||
|
],
|
||||||
|
|
||||||
[
|
[
|
||||||
'name' => 'briar'
|
'name' => 'briar'
|
||||||
|
|
|
@ -225,6 +225,19 @@ button:hover,
|
||||||
filter: brightness(90%);
|
filter: brightness(90%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* BookWyrm */
|
||||||
|
.button.button-bookwyrm {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #000000;
|
||||||
|
border-width: 1px;
|
||||||
|
}
|
||||||
|
.button.button-bookwyrm:hover,
|
||||||
|
.button.button-bookwyrm:focus {
|
||||||
|
filter: brightness(90%);
|
||||||
|
}
|
||||||
|
|
||||||
/* Briar */
|
/* Briar */
|
||||||
.button.button-briar {
|
.button.button-briar {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
|
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 372 KiB |
Loading…
Reference in New Issue