From 509b6bc307e274a214175e94ad8e09d201949c4b Mon Sep 17 00:00:00 2001 From: Realmlist Date: Wed, 13 Dec 2023 15:44:22 +0100 Subject: [PATCH] Added buttons Added styles, seeds and SVGs for Booth.pm, HearThis.at, Pronouns.page, and Throne.com. --- assets/linkstack/css/brands.css | 40 +++++++++++ assets/linkstack/icons/booth.svg | 93 +++++++++++++++++++++++++ assets/linkstack/icons/hearthisat.svg | 85 ++++++++++++++++++++++ assets/linkstack/icons/pronounspage.svg | 4 ++ assets/linkstack/icons/throne.svg | 12 ++++ database/seeders/ButtonSeeder.php | 16 +++++ 6 files changed, 250 insertions(+) create mode 100644 assets/linkstack/icons/booth.svg create mode 100644 assets/linkstack/icons/hearthisat.svg create mode 100644 assets/linkstack/icons/pronounspage.svg create mode 100644 assets/linkstack/icons/throne.svg diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index 867a43b..2d73a40 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -257,6 +257,16 @@ button:hover, filter: brightness(90%); } +/* Booth */ +.button.button-booth { + color: #FFFFFF; + background-color: #FC4D50; +} +.button.button-booth:hover, +.button.button-booth:focus { + filter: brightness(90%); +} + /* Bluesky */ .button.button-bluesky { color: #000000; @@ -558,6 +568,16 @@ button:hover, filter: brightness(90%); } +/* HearThis.at */ +.button.button-hearthisat { + color: #FFFFFF; + background-color: #000000; +} +.button.button-hearthisat:hover, +.button.button-hearthisat:focus { + filter: brightness(90%); +} + /* Humble Bundle */ .button.button-humble-bundle { color: #FFFFFF; @@ -887,6 +907,16 @@ button:hover, filter: brightness(90%); } +/* PronounsPage */ +.button.button-pronounspage { + color: #ffffff; + background-color: #ff95bb; +} +.button.button-pronounspage:hover, +.button.button-pronounspage:focus { + filter: brightness(90%); +} + /* Reddit */ .button.button-reddit { color: #000000; @@ -1017,6 +1047,16 @@ button.button-scribd{ filter: brightness(90%); } +/* Throne */ +.button.button-throne { + color: #FFFFFF; + background-color: #805AD5; +} +.button.button-throne:hover, +.button.button-throne:focus { + filter: brightness(90%); +} + /* TikTok */ .button.button-tiktok { color: #FFFFFF; diff --git a/assets/linkstack/icons/booth.svg b/assets/linkstack/icons/booth.svg new file mode 100644 index 0000000..f26216c --- /dev/null +++ b/assets/linkstack/icons/booth.svg @@ -0,0 +1,93 @@ + + + + \ No newline at end of file diff --git a/assets/linkstack/icons/hearthisat.svg b/assets/linkstack/icons/hearthisat.svg new file mode 100644 index 0000000..0608331 --- /dev/null +++ b/assets/linkstack/icons/hearthisat.svg @@ -0,0 +1,85 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/linkstack/icons/pronounspage.svg b/assets/linkstack/icons/pronounspage.svg new file mode 100644 index 0000000..077234a --- /dev/null +++ b/assets/linkstack/icons/pronounspage.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/assets/linkstack/icons/throne.svg b/assets/linkstack/icons/throne.svg new file mode 100644 index 0000000..a396573 --- /dev/null +++ b/assets/linkstack/icons/throne.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index 4681e90..85db3ef 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -445,6 +445,22 @@ class ButtonSeeder extends Seeder [ 'name' => 'streams' ], + + [ + 'name' => 'pronounspage' + ], + + [ + 'name' => 'booth' + ], + + [ + 'name' => 'hearthisat' + ], + + [ + 'name' => 'throne' + ], ]; Button::insert($buttons);