Merge pull request #357 from MagicLike/bookwyrm
Added button for BookWyrm
This commit is contained in:
commit
525245a356
|
@ -6,6 +6,7 @@ $buttonNames = array(
|
|||
'appstore' => 'App Store',
|
||||
'apple-music' => 'Apple Music',
|
||||
'apple-podcasts' => 'Apple Podcasts',
|
||||
'bookwyrm' => 'BookWyrm',
|
||||
'dev-to' => 'DEV',
|
||||
'epic-games' => 'Epic Games',
|
||||
'f-droid' => 'F-Droid',
|
||||
|
|
|
@ -69,7 +69,6 @@ class ButtonSeeder extends Seeder
|
|||
[
|
||||
'name' => 'goodreads'
|
||||
],
|
||||
|
||||
|
||||
[
|
||||
'name' => 'instagram'
|
||||
|
@ -392,7 +391,11 @@ class ButtonSeeder extends Seeder
|
|||
],
|
||||
|
||||
[
|
||||
'name' => 'icon'
|
||||
'name' => 'icon'
|
||||
],
|
||||
|
||||
[
|
||||
'name' => 'bookwyrm'
|
||||
],
|
||||
|
||||
];
|
||||
|
|
|
@ -225,6 +225,19 @@ button:hover,
|
|||
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 */
|
||||
.button.button-briar {
|
||||
color: #FFFFFF;
|
||||
|
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 372 KiB |
Loading…
Reference in New Issue