This commit is contained in:
Julian Prieber 2023-03-10 23:55:06 +01:00
commit 3dabb995d6
5 changed files with 123 additions and 3 deletions

View File

@ -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',

View File

@ -70,7 +70,6 @@ class ButtonSeeder extends Seeder
'name' => 'goodreads'
],
[
'name' => 'instagram'
],
@ -395,6 +394,10 @@ class ButtonSeeder extends Seeder
'name' => 'icon'
],
[
'name' => 'bookwyrm'
],
];
Button::insert($buttons);

View File

@ -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

View File

@ -1 +1 @@
3.4.2
3.5.0