1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Daniel Neto 2025-07-25 13:08:54 -03:00
parent fd7b1fc415
commit efa50e4ca5
2 changed files with 32 additions and 2 deletions

View file

@ -115,7 +115,6 @@ class CustomizeUser extends PluginAbstract
'placeholder' => __("Reddit URL"), 'placeholder' => __("Reddit URL"),
'isActive' => true, 'isActive' => true,
], ],
/*
'telegram' => [ 'telegram' => [
'class' => 'icoTelegram', 'class' => 'icoTelegram',
'icon' => 'fab fa-telegram', 'icon' => 'fab fa-telegram',
@ -123,6 +122,7 @@ class CustomizeUser extends PluginAbstract
'placeholder' => __("Telegram URL"), 'placeholder' => __("Telegram URL"),
'isActive' => true, 'isActive' => true,
], ],
/*
'google' => [ 'google' => [
'class' => 'icoGoogle', 'class' => 'icoGoogle',
'icon' => 'fab fa-google', 'icon' => 'fab fa-google',
@ -160,6 +160,7 @@ class CustomizeUser extends PluginAbstract
'placeholder' => __("RSS URL"), 'placeholder' => __("RSS URL"),
'isActive' => true, 'isActive' => true,
], ],
*/
'gab' => [ 'gab' => [
'class' => 'icoGab', 'class' => 'icoGab',
'icon' => 'fab fa-gab', 'icon' => 'fab fa-gab',
@ -167,7 +168,6 @@ class CustomizeUser extends PluginAbstract
'placeholder' => __("Gab URL"), 'placeholder' => __("Gab URL"),
'isActive' => true, 'isActive' => true,
], ],
*/
'clouthub' => [ 'clouthub' => [
'class' => 'icoCloutHub', 'class' => 'icoCloutHub',
'icon' => 'fas fa-cloud', 'icon' => 'fas fa-cloud',
@ -206,6 +206,27 @@ class CustomizeUser extends PluginAbstract
'label' => __("Shopping Website"), 'label' => __("Shopping Website"),
'placeholder' => __("Shopping Website URL"), 'placeholder' => __("Shopping Website URL"),
], ],
'substack' => [
'class' => 'icoSubstack',
'icon' => 'fas fa-newspaper',
'label' => __("Substack"),
'placeholder' => __("Substack URL"),
'isActive' => true,
],
'rumble' => [
'class' => 'icoRumble',
'icon' => 'fas fa-video',
'label' => __("Rumble"),
'placeholder' => __("Rumble URL"),
'isActive' => true,
],
'volk' => [
'class' => 'icoVolk',
'icon' => 'fas fa-users',
'label' => __("Volk"),
'placeholder' => __("Volk URL"),
'isActive' => true,
],
]; ];
} }

View file

@ -109,6 +109,15 @@ ul.social-network li {
.social-network .icoYoutube { .social-network .icoYoutube {
--hover-color: #FF0000; --hover-color: #FF0000;
} }
.social-network .icoSubstack {
--hover-color: #FF6719;
}
.social-network .icoRumble {
--hover-color: #85C742;
}
.social-network .icoVolk {
--hover-color: #1B4F72;
}
/* Define a base class for common styles */ /* Define a base class for common styles */
.social-network a, .social-network button{ .social-network a, .social-network button{