diff --git a/website_social_media_icon_style/README.rst b/website_social_media_icon_style/README.rst new file mode 100644 index 000000000..9371eaad5 --- /dev/null +++ b/website_social_media_icon_style/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Social Media Icon Styles in Website +=================================== +This module helps you to choose social media share button styles for website. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Gnu Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer : (V16) Muhsina V, (V15) Afra MP +* Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/website_social_media_icon_style/__init__.py b/website_social_media_icon_style/__init__.py new file mode 100644 index 000000000..274a1697f --- /dev/null +++ b/website_social_media_icon_style/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Afra MP () +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/website_social_media_icon_style/__manifest__.py b/website_social_media_icon_style/__manifest__.py new file mode 100644 index 000000000..3615cf5e6 --- /dev/null +++ b/website_social_media_icon_style/__manifest__.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Afra MP () +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Social Media Icon Styles in Website', + 'version': '15.0.1.0.0', + 'category': 'Website', + 'summary': "Customized style for website social media sharing buttons", + 'description': "This module helps to share the product on social media " + "like Facebook, Twitter, LinkedIn, WhatsApp, email, " + "Pinterest, Reddit or Hacker News, Also provide 10+ styles " + "for social media sharing button. User can enable/disable " + "these social media platforms from the settings.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['website_sale'], + 'data': [ + 'views/res_config_settings_views.xml', + 'views/share_social_media_templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + 'website_social_media_icon_style/static/src/scss/*', + ], + }, + 'images': ['static/description/banner.png'], + 'licence': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/website_social_media_icon_style/doc/RELEASE_NOTES.md b/website_social_media_icon_style/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..f89835fcf --- /dev/null +++ b/website_social_media_icon_style/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 13.06.2024 +#### Version 15.0.1.0.0 +##### ADD +- Initial Commit for Social Media Icon Styles in Website diff --git a/website_social_media_icon_style/models/__init__.py b/website_social_media_icon_style/models/__init__.py new file mode 100644 index 000000000..f9dd6405c --- /dev/null +++ b/website_social_media_icon_style/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Afra MP () +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import res_config_settings diff --git a/website_social_media_icon_style/models/res_config_settings.py b/website_social_media_icon_style/models/res_config_settings.py new file mode 100644 index 000000000..3f50bb7c9 --- /dev/null +++ b/website_social_media_icon_style/models/res_config_settings.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Afra MP () +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """ Inhering to Add fields to enable social media sharing and styles""" + _inherit = 'res.config.settings' + + enable_social_media_sharing_style = fields.Boolean( + string='Product Social Media Sharing', + config_parameter='website_social_media_icon_style.enable', + help="Enable social media share button styling feature.") + icon_style = fields.Selection([('style1', 'ElegantCircle'), + ('style2', 'ClassicCircle'), + ('style3', 'DynamicHover'), + ('style4', 'VividSpinner'), + ('style5', 'VibrantCircle'), + ('style6', 'IconRotate'), + ('style7', 'SquareBackground'), + ('style8', 'SubtleHoverSquare'), + ('style9', 'GradientRotate'), + ('style10', 'RotateLargeIcon'), + ('style11', 'IconWithName')], + string="Icon Style", + config_parameter='website_social_media_icon_style.icon_style', + help="Choose the style of the icon for " + "social media buttons.") + facebook_icon = fields.Boolean(string="Facebook", + config_parameter='website_social_media_icon_style.facebook' + , help="Enable or disable the Facebook icon" + " for social media sharing.") + whatsapp_icon = fields.Boolean(string="WhatsApp", + config_parameter='website_social_media_icon_style.whatsapp', + help="Enable or disable the WhatsApp icon " + "for social media sharing.") + twitter_icon = fields.Boolean(string="Twitter", + config_parameter='website_social_media_icon_style.twitter', + help="Enable or disable the Twitter icon for" + " social media sharing.") + linkedin_icon = fields.Boolean(string="LinkedIn", + config_parameter='website_social_media_icon_style.linkedin', + help="Enable or disable the LinkedIn icon " + "for social media sharing.") + email_icon = fields.Boolean(string="E-mail", + config_parameter='website_social_media_icon_style.email', + help="Enable or disable the E-mail icon for" + " social media sharing.") + pinterest_icon = fields.Boolean(string="Pinterest", + config_parameter='website_social_media_icon_style.pinterest', + help="Enable or disable the Pinterest " + "icon for social media sharing.") + reddit_icon = fields.Boolean(string="Reddit", + config_parameter='website_social_media_icon_style.reddit', + help="Enable or disable the Reddit icon for " + "social media sharing.") + hackernews_icon = fields.Boolean(string="Hacker News", + config_parameter='website_social_media_icon_style.hackernews', + help="Enable or disable the Hacker News " + "icon for social media sharing.") diff --git a/website_social_media_icon_style/static/description/assets/icons/check.png b/website_social_media_icon_style/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/check.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/chevron.png b/website_social_media_icon_style/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/chevron.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/cogs.png b/website_social_media_icon_style/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/cogs.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/consultation.png b/website_social_media_icon_style/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/consultation.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/ecom-black.png b/website_social_media_icon_style/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/ecom-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/education-black.png b/website_social_media_icon_style/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/education-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/hotel-black.png b/website_social_media_icon_style/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/hotel-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/license.png b/website_social_media_icon_style/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/license.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/lifebuoy.png b/website_social_media_icon_style/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/lifebuoy.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/manufacturing-black.png b/website_social_media_icon_style/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/pos-black.png b/website_social_media_icon_style/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/pos-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/puzzle.png b/website_social_media_icon_style/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/puzzle.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/restaurant-black.png b/website_social_media_icon_style/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/restaurant-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/service-black.png b/website_social_media_icon_style/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/service-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/trading-black.png b/website_social_media_icon_style/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/trading-black.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/training.png b/website_social_media_icon_style/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/training.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/update.png b/website_social_media_icon_style/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/update.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/user.png b/website_social_media_icon_style/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/user.png differ diff --git a/website_social_media_icon_style/static/description/assets/icons/wrench.png b/website_social_media_icon_style/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/icons/wrench.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/categories.png b/website_social_media_icon_style/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/categories.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/check-box.png b/website_social_media_icon_style/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/check-box.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/compass.png b/website_social_media_icon_style/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/compass.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/corporate.png b/website_social_media_icon_style/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/corporate.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/customer-support.png b/website_social_media_icon_style/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/customer-support.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/cybrosys-logo.png b/website_social_media_icon_style/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/cybrosys-logo.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/features.png b/website_social_media_icon_style/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/features.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/logo.png b/website_social_media_icon_style/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/logo.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/pictures.png b/website_social_media_icon_style/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/pictures.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/pie-chart.png b/website_social_media_icon_style/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/pie-chart.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/right-arrow.png b/website_social_media_icon_style/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/right-arrow.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/star.png b/website_social_media_icon_style/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/star.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/support.png b/website_social_media_icon_style/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/support.png differ diff --git a/website_social_media_icon_style/static/description/assets/misc/whatsapp.png b/website_social_media_icon_style/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/misc/whatsapp.png differ diff --git a/website_social_media_icon_style/static/description/assets/modules/budget_image.png b/website_social_media_icon_style/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/modules/budget_image.png differ diff --git a/website_social_media_icon_style/static/description/assets/modules/credit_image.png b/website_social_media_icon_style/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/modules/credit_image.png differ diff --git a/website_social_media_icon_style/static/description/assets/modules/employee_image.png b/website_social_media_icon_style/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/modules/employee_image.png differ diff --git a/website_social_media_icon_style/static/description/assets/modules/export_image.png b/website_social_media_icon_style/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/modules/export_image.png differ diff --git a/website_social_media_icon_style/static/description/assets/modules/gantt_image.png b/website_social_media_icon_style/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/modules/gantt_image.png differ diff --git a/website_social_media_icon_style/static/description/assets/modules/quotation_image.png b/website_social_media_icon_style/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/modules/quotation_image.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/1.png b/website_social_media_icon_style/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..19879abab Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/1.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/2.png b/website_social_media_icon_style/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..af6b2dd51 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/2.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/3.png b/website_social_media_icon_style/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..7ca38a391 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/3.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/4.png b/website_social_media_icon_style/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..48580dafb Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/4.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/5.png b/website_social_media_icon_style/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..403a6ef5c Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/5.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/6.png b/website_social_media_icon_style/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..404ce90bd Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/6.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/7.png b/website_social_media_icon_style/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..35899c93e Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/7.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/8.png b/website_social_media_icon_style/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..e0bf7ccc8 Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/8.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/9.png b/website_social_media_icon_style/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..11c57590c Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/9.png differ diff --git a/website_social_media_icon_style/static/description/assets/screenshots/hero.gif b/website_social_media_icon_style/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..11624733e Binary files /dev/null and b/website_social_media_icon_style/static/description/assets/screenshots/hero.gif differ diff --git a/website_social_media_icon_style/static/description/banner.png b/website_social_media_icon_style/static/description/banner.png new file mode 100644 index 000000000..43126a3e8 Binary files /dev/null and b/website_social_media_icon_style/static/description/banner.png differ diff --git a/website_social_media_icon_style/static/description/icon.png b/website_social_media_icon_style/static/description/icon.png new file mode 100644 index 000000000..038e86d6a Binary files /dev/null and b/website_social_media_icon_style/static/description/icon.png differ diff --git a/website_social_media_icon_style/static/description/index.html b/website_social_media_icon_style/static/description/index.html new file mode 100644 index 000000000..315d227ae --- /dev/null +++ b/website_social_media_icon_style/static/description/index.html @@ -0,0 +1,642 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Social Media Icon Styles in Website +

+

+ Social Media Icon Styles in Website -Facebook, Twitter, + LinkedIn, WhatsApp, Email, Pinterest, Reddit, Hacker News +

+ + +
+
+
+
+ + +
+
+ +
+

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module helps to share the product on social media like Facebook, + Twitter, LinkedIn, WhatsApp, email, Pinterest, Reddit or Hacker News, + Also + provide 10+ styles for social media sharing. + User can enable/disable these social media platforms from the settings. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + User Can Enable/Disable Social Media Platforms. +
+
+ + 10+ Styles for Social Media Sharing. + +
+
+ + Attractive and Easy to Use Styles. +
+
+
+
+ + Available in Odoo 16.0 + Community, Enterprise and Odoo.sh. +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Enable Social Media Sharing. +

+

+ Go to Website => Configuration => Settings, enable social media sharing and + choose the style.

+ +
+
+

+ Enable Social Media Share. +

+

+ Enable the required social media sharing.

+ +
+
+

+ Style is Loaded. +

+

+ We can see the social media share style and here is how + ClassicCircle looks like.

+ +
+
+

+ DynamicHover looks like this, and on hovering each icon, its + changes.

+ +
+
+

+ Likewise, we can choose the required style. +

+ +
+
+

+ We can see style is changing.

+ +
+
+

+ +
+
+

+ +
+
+
+ + + +
+
+

Related Modules

+

Explore our related modules

+
+
+ +
+ + + +
+
+ +
+

+ Our Services +

+
+
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+ +
+

+ Our + Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/website_social_media_icon_style/static/src/scss/ClassicCircle.scss b/website_social_media_icon_style/static/src/scss/ClassicCircle.scss new file mode 100644 index 000000000..71c4b499a --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/ClassicCircle.scss @@ -0,0 +1,57 @@ +.style2 { + position: relative; + width: 40px; + height: 40px; + display: block; + text-align: center; + margin: 0 8px; + border-radius: 50%; + padding: 4px; + box-sizing: border-box; + text-decoration: none; + box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); + background: linear-gradient(0deg, #f5f5f5, #fff); + transition: .5s; +} +.style2:hover { + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); + text-decoration: none; +} +.style2 .fa { + width: 100%; + height: 100%; + display: block; + background: linear-gradient(0deg, #fff, #f5f5f5); + border-radius: 50%; + line-height: calc(40px - 8px); + font-size: 16px; + color: #333; + transition: .5s; +} +.style2:hover .fa-facebook { + color: #3b5998; +} +.style2:hover .fa-twitter { + color: #00aced; +} +.style2:hover .fa-pinterest { + color: #bd081c; +} +.style2:hover .fa-reddit { + color: #ff4500; +} +.style2:hover .fa-hacker-news { + color: #ff6600; +} +.style2:hover .fa-envelope { + color: #007bff; +} +.style2:hover .fa-linkedin { + color: #007bb6; +} +.style2:hover .fa-hacker-news { + color: #ff6600; +} +.style2:hover .fa-whatsapp { + color: #25d366; +} diff --git a/website_social_media_icon_style/static/src/scss/DynamicHover.scss b/website_social_media_icon_style/static/src/scss/DynamicHover.scss new file mode 100644 index 000000000..c48a50061 --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/DynamicHover.scss @@ -0,0 +1,69 @@ +.style3 { + position: relative; + font-size: 22px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; + .fa { + width: 50px; + height: 50px; + display: flex; + border-radius: 50%; + line-height: calc(40px - 8px); + font-size: 16px; + background-color: #333; + color: #ffffff; + transition: 0.5s; + } + &:hover { + transform: translateY(-5px); + box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2); + } + &:hover span { + text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1); + } + .fa-facebook:hover, + .fa-facebook:hover span { + background-color: #3b5999; + color: #ffffff; + } + .fa-twitter:hover, + .fa-twitter:hover span { + background-color: #46c1f6; + color: #ffffff; + } + .fa-pinterest:hover, + .fa-pinterest:hover span { + background-color: #dd4b39; + color: #ffffff; + } + .fa-reddit:hover, + .fa-reddit:hover span { + background-color: #dd4b39; + color: #ffffff; + } + .fa-envelope:hover, + .fa-envelope:hover span { + background-color: #35979c; + color: #ffffff; + } + .fa-linkedin:hover, + .fa-linkedin:hover span { + background-color: #007bb6; + color: #ffffff; + } + .fa-hacker-news:hover, + .fa-hacker-news:hover span { + background-color: #e4405f; + color: #ffffff; + } + .fa-whatsapp:hover, + .fa-whatsapp:hover span { + background-color: #28a745; + color: #ffffff; + } +} diff --git a/website_social_media_icon_style/static/src/scss/ElegantCircle.scss b/website_social_media_icon_style/static/src/scss/ElegantCircle.scss new file mode 100644 index 000000000..e170fef9e --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/ElegantCircle.scss @@ -0,0 +1,55 @@ +.style1 { + position: relative; + width:60px; + height:60px; + display:block; + text-align:center; + margin:0 10px; + border-radius: 50%; + padding: 6px; + box-sizing: border-box; + text-decoration:none; + box-shadow: 0 10px 15px rgba(0,0,0,0.3); + background: linear-gradient(0deg, #ddd, #fff); + transition: .5s; +} +.style1:hover { + box-shadow: 0 2px 5px rgba(0,0,0,0.3); + text-decoration:none; +} +.style1 .fa { + widht: 100%; + height:100%; + display:block; + background: linear-gradient(0deg, #fff, #ddd); + border-radius: 50%; + line-height: calc(60px - 12px); + font-size:24px; + color: #262626; + transition: .5s; +} + .style1:hover .fa-facebook { + color: #3b5998; +} + +.style1:hover .fa-twitter { + color: #00aced; +} +.style1:hover .fa-pinterest { + color: #dd4b39; +} +.style1:hover .fa-reddit { + color: #dd4b39; +} +.style1:hover .fa-envelope { + color: #35979c; +} +.style1:hover .fa-linkedin { + color: #007bb6; +} +.style1:hover .fa-hacker-news { + color: #e4405f; +} +.style1:hover .fa-whatsapp { + color: #28a745; +} diff --git a/website_social_media_icon_style/static/src/scss/GradientRotate.scss b/website_social_media_icon_style/static/src/scss/GradientRotate.scss new file mode 100644 index 000000000..5050cda8e --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/GradientRotate.scss @@ -0,0 +1,61 @@ +.style9 { + position: relative; + width: 60px; + height: 60px; + display: block; + text-align: center; + margin: 0 8px; + border-radius: 50%; + padding: 4px; + box-sizing: border-box; + text-decoration: none; + box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); + background: linear-gradient(0deg, #f5f5f5, #fff); + transition: .5s; +} +.style9:hover { + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); + text-decoration: none; +} +.style9 .fa { + width: 100%; + height: 100%; + display: block; + background: linear-gradient(0deg, #fff, #f5f5f5); + border-radius: 50%; + line-height: calc(40px - 8px); + font-size: 16px; + color: #333; + transition: .5s; +} +.style9:hover .fa { + transform: rotate(360deg); /* Add rotation effect */ + font-size: 20px; +} +.style9:hover .fa-facebook { + color: #3b5998; +} +.style9:hover .fa-twitter { + color: #00aced; +} +.style9:hover .fa-pinterest { + color: #bd081c; +} +.style9:hover .fa-reddit { + color: #ff4500; +} +.style9:hover .fa-hacker-news { + color: #ff6600; +} +.style9:hover .fa-envelope { + color: #007bff; +} +.style9:hover .fa-linkedin { + color: #007bb6; +} +.style9:hover .fa-hacker-news { + color: #ff6600; +} +.style9:hover .fa-whatsapp { + color: #25d366; +} diff --git a/website_social_media_icon_style/static/src/scss/IconRotate.scss b/website_social_media_icon_style/static/src/scss/IconRotate.scss new file mode 100644 index 000000000..b1e81f68f --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/IconRotate.scss @@ -0,0 +1,101 @@ +.style6 { + position: relative; + font-size: 22px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; +} +.style6 .fa { + width: 50px; + height: 50px; + display: flex; + border-radius: 50%; + line-height: calc(40px - 8px); + font-size: 16px; + color: #333; + transition: .5s; +} +.style6 .fa-facebook{ + color: white; + background-color: #3b5999; +} +.style6 .fa-twitter{ + color: white; + background-color: #46c1f6; +} +.style6 .fa-pinterest{ + color: white; + background-color: #dd4b39; +} +.style6 .fa-reddit{ + color: white; + background-color: #007bff; +} +.style6 .fa-envelope{ + color: white; + background-color: #dd4b39; +} +.style6 .fa-linkedin{ + color: white; + background-color: #007bb6; +} +.style6 .fa-hacker-news{ + color: white; + background-color: #e4405f; +} +.style6 .fa-whatsapp{ + color: white; + background-color: #28a745; +} +.style6 .fa-facebook:hover, +.style6 .fa-facebook:hover span { + background-color: #ffffff; + color: #3b5999; + font-size: 30px; +} +.style6 .fa-twitter:hover, +.style6 .fa-twitter:hover span { + background-color: #ffffff; + color: #46c1f6; + font-size: 30px; +} +.style6 .fa-pinterest:hover, +.style6 .fa-pinterest:hover span { + background-color: #ffffff; + color: #dd4b39; + font-size: 30px; +} +.style6 .fa-reddit:hover, +.style6 .fa-reddit:hover span { + background-color: #ffffff; + color: #007bff; + font-size: 30px; +} +.style6 .fa-envelope:hover, +.style6 .fa-envelope:hover span { + background-color: #ffffff; + color: #dd4b39; + font-size: 30px; +} +.style6 .fa-linkedin:hover, +.style6 .fa-linkedin:hover span { + background-color: #ffffff; + color: #007bb6; + font-size: 30px; +} +.style6 .fa-hacker-news:hover, +.style6 .fa-hacker-news:hover span { + background-color: #ffffff; + color: #e4405f; + font-size: 30px; +} +.style6 .fa-whatsapp:hover, +.style6 .fa-whatsapp:hover span { + background-color: #ffffff; + color: #28a745; + font-size: 30px; +} diff --git a/website_social_media_icon_style/static/src/scss/IconWithName.scss b/website_social_media_icon_style/static/src/scss/IconWithName.scss new file mode 100644 index 000000000..b59f80b52 --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/IconWithName.scss @@ -0,0 +1,54 @@ +.style11 { + position: relative; + font-size: 18px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; +} +.style11 .fa { + padding: 20px; + font-size: px; + width: 100%; + text-align: center; + text-decoration: none; + margin: 1px -7px; +} +.style11 .fa:hover { + opacity: 0.7; +} +.style11 .fa-facebook{ + color: white; + background-color: #3b5999; +} +.style11 .fa-twitter{ + color: white; + background-color: #46c1f6; +} +.style11 .fa-pinterest{ + color: white; + background-color: #dd4b39; +} +.style11 .fa-reddit{ + color: white; + background-color: #007bff; +} +.style11 .fa-envelope{ + color: white; + background-color: #dd4b39; +} +.style11 .fa-linkedin{ + color: white; + background-color: #007bb6; +} +.style11 .fa-hacker-news{ + color: white; + background-color: #e4405f; +} +.style11 .fa-whatsapp{ + color: white; + background-color: #28a745; +} diff --git a/website_social_media_icon_style/static/src/scss/RotateLargeIcon.scss b/website_social_media_icon_style/static/src/scss/RotateLargeIcon.scss new file mode 100644 index 000000000..6d1e4259b --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/RotateLargeIcon.scss @@ -0,0 +1,60 @@ +.style10 { + position: relative; + width: 40px; + height: 40px; + display: block; + text-align: center; + margin: 0 8px; + border-radius: 50%; + padding: 4px; + box-sizing: border-box; + text-decoration: none; + background-color: #f5f5f5; + transition: .5s; +} +.style10:hover { + background-color: #fffff; + text-decoration: none; +} +.style10 .fa { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + font-size: 16px; + color: #333; + transition: .5s; +} +.style10:hover .fa { + transform: rotate(360deg); + font-size: 50px; +} +.style10:hover .fa-facebook { + color: #3b5998; +} +.style10:hover .fa-twitter { + color: #00aced; +} +.style10:hover .fa-pinterest { + color: #bd081c; +} +.style10:hover .fa-reddit { + color: #007bff; +} +.style10:hover .fa-hacker-news { + color: #ff6600; +} +.style10:hover .fa-envelope { + color: #dd4b39; +} +.style10:hover .fa-linkedin { + color: #007bb6; +} +.style10:hover .fa-hacker-news { + color: #ff6600; +} +.style10:hover .fa-whatsapp { + color: #25d366; +} diff --git a/website_social_media_icon_style/static/src/scss/SquareBackground.scss b/website_social_media_icon_style/static/src/scss/SquareBackground.scss new file mode 100644 index 000000000..5c63c9680 --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/SquareBackground.scss @@ -0,0 +1,99 @@ +.style7 { + position: relative; + font-size: 22px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; +} +.style7 .fa { + padding: 20px; + font-size: 26px; + width: 60px; + text-align: center; + text-decoration: none; + margin: 5px -2px; +} +.style7 .fa-facebook{ + color: white; + background-color: #3b5999; +} +.style7 .fa-twitter{ + color: white; + background-color: #46c1f6; +} +.style7 .fa-pinterest{ + color: white; + background-color: #dd4b39; +} +.style7 .fa-reddit{ + color: white; + background-color: #007bff; +} +.style7 .fa-envelope{ + color: white; + background-color: #dd4b39; +} +.style7 .fa-linkedin{ + color: white; + background-color: #007bb6; +} +.style7 .fa-hacker-news{ + color: white; + background-color: #e4405f; +} +.style7 .fa-whatsapp{ + color: white; + background-color: #28a745; +} +.style7 .fa-facebook:hover, +.style7 .fa-facebook:hover span { + background-color: #ffffff; + color: #3b5999; + font-size: 30px; +} +.style7 .fa-twitter:hover, +.style7 .fa-twitter:hover span { + background-color: #ffffff; + color: #46c1f6; + font-size: 30px; +} +.style7 .fa-pinterest:hover, +.style7 .fa-pinterest:hover span { + background-color: #ffffff; + color: #dd4b39; + font-size: 30px; +} +.style7 .fa-reddit:hover, +.style7 .fa-reddit:hover span { + background-color: #ffffff; + color: #007bff; + font-size: 30px; +} +.style7 .fa-envelope:hover, +.style7 .fa-envelope:hover span { + background-color: #ffffff; + color: #dd4b39; + font-size: 30px; +} +.style7 .fa-linkedin:hover, +.style7 .fa-linkedin:hover span { + background-color: #ffffff; + color: #007bb6; + font-size: 30px; +} +.style7 .fa-hacker-news:hover, +.style7 .fa-hacker-news:hover span { + background-color: #ffffff; + color: #e4405f; + font-size: 30px; +} +.style7 .fa-whatsapp:hover, +.style7 .fa-whatsapp:hover span { + background-color: #ffffff; + color: #28a745; + font-size: 30px; +} diff --git a/website_social_media_icon_style/static/src/scss/SubtleHoverSquare.scss b/website_social_media_icon_style/static/src/scss/SubtleHoverSquare.scss new file mode 100644 index 000000000..dd244b861 --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/SubtleHoverSquare.scss @@ -0,0 +1,54 @@ +.style8 { + position: relative; + font-size: 22px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; +} +.style8 .fa { + padding: 20px; + font-size: 22px; + width: 60px; + text-align: center; + text-decoration: none; + margin: 1px -7px; +} +.style8 .fa:hover { + opacity: 0.7; +} +.style8 .fa-facebook{ + color: white; + background-color: #3b5999; +} +.style8 .fa-twitter{ + color: white; + background-color: #46c1f6; +} +.style8 .fa-pinterest{ + color: white; + background-color: #dd4b39; +} +.style8 .fa-reddit{ + color: white; + background-color: #007bff; +} +.style8 .fa-envelope{ + color: white; + background-color: #dd4b39; +} +.style8 .fa-linkedin{ + color: white; + background-color: #007bb6; +} +.style8 .fa-hacker-news{ + color: white; + background-color: #e4405f; +} +.style8 .fa-whatsapp{ + color: white; + background-color: #28a745; +} diff --git a/website_social_media_icon_style/static/src/scss/VibrantCircle.scss b/website_social_media_icon_style/static/src/scss/VibrantCircle.scss new file mode 100644 index 000000000..e7d000a3e --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/VibrantCircle.scss @@ -0,0 +1,100 @@ +.style5 { + position: relative; + font-size: 22px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; +} +.style5 .fa { + width: 50px; + height: 50px; + display: flex; + border-radius: 50%; + line-height: calc(40px - 8px); + font-size: 16px; + color: #333; + transition: .5s; +} +.style5 .fa-facebook{ + color: white; + background-color: #3b5999; +} +.style5 .fa-twitter{ + color: white; + background-color: #46c1f6; +} +.style5 .fa-pinterest{ + color: white; + background-color: #dd4b39; +} +.style5 .fa-reddit{ + color: white; + background-color: #007bff; +} +.style5 .fa-envelope{ + color: white; + background-color: #dd4b39; +} +.style5 .fa-linkedin{ + color: white; + background-color: #007bb6; +} +.style5 .fa-hacker-news{ + color: white; + background-color: #e4405f; +} +.style5 .fa-whatsapp{ + color: white; + background-color: #28a745; +} +.style5:hover { + transform: translateY(-5px); + box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2); +} +.style5:hover span { + text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1); +} +.style5 .fa-facebook:hover, +.style5 .fa-facebook:hover span { + background-color: #3b5999; + color: #ffffff; +} +.style5 .fa-twitter:hover, +.style5 .fa-twitter:hover span { + background-color: #46c1f6; + color: #ffffff; +} +.style5 .fa-pinterest:hover, +.style5 .fa-pinterest:hover span { + background-color: #dd4b39; + color: #ffffff; +} +.style5 .fa-reddit:hover, +.style5 .fa-reddit:hover span { + background-color: #007bff; + color: #ffffff; +} +.style5 .fa-envelope:hover, +.style5 .fa-envelope:hover span { + background-color: #dd4b39; + color: #ffffff; +} +.style5 .fa-linkedin:hover, +.style5 .fa-linkedin:hover span { + background-color: #007bb6; + color: #ffffff; +} +.style5 .fa-hacker-news:hover, +.style5 .fa-hacker-news:hover span { + background-color: #e4405f; + color: #ffffff; +} +.style5 .fa-whatsapp:hover, +.style5 .fa-whatsapp:hover span { + background-color: #28a745; + color: #ffffff; +} diff --git a/website_social_media_icon_style/static/src/scss/VividSpinner.scss b/website_social_media_icon_style/static/src/scss/VividSpinner.scss new file mode 100644 index 000000000..a0db4f856 --- /dev/null +++ b/website_social_media_icon_style/static/src/scss/VividSpinner.scss @@ -0,0 +1,68 @@ +.style4 { + position: relative; + font-size: 22px; + border-radius: 50%; + display: inline-block; + align-items: center; + cursor: pointer; + transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); + color: #333; + text-decoration: none; +} +.style4 .fa { + width: 50px; + height: 50px; + display: flex; + border-radius: 50%; + line-height: calc(40px - 8px); + font-size: 16px; + color: #333; + transition: .5s; +} +.style4:hover { + transform: translateY(-5px); + box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2); +} +.style4:hover span { + text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1); +} +.style4 .fa-facebook:hover, +.style4 .fa-facebook:hover span { + background-color: #3b5999; + color: #ffffff; +} +.style4 .fa-twitter:hover, +.style4 .fa-twitter:hover span { + background-color: #46c1f6; + color: #ffffff; +} +.style4 .fa-pinterest:hover, +.style4 .fa-pinterest:hover span { + background-color: #dd4b39; + color: #ffffff; +} +.style4 .fa-reddit:hover, +.style4 .fa-reddit:hover span { + background-color: #dd4b39; + color: #ffffff; +} +.style4 .fa-envelope:hover, +.style4 .fa-envelope:hover span { + background-color: #35979c; + color: #ffffff; +} +.style4 .fa-linkedin:hover, +.style4 .fa-linkedin:hover span { + background-color: #007bb6; + color: #ffffff; +} +.style4 .fa-hacker-news:hover, +.style4 .fa-hacker-news:hover span { + background-color: #e4405f; + color: #ffffff; +} +.style4 .fa-whatsapp:hover, +.style4 .fa-whatsapp:hover span { + background-color: #28a745; + color: #ffffff; +} diff --git a/website_social_media_icon_style/views/res_config_settings_views.xml b/website_social_media_icon_style/views/res_config_settings_views.xml new file mode 100644 index 000000000..0acb5e2a3 --- /dev/null +++ b/website_social_media_icon_style/views/res_config_settings_views.xml @@ -0,0 +1,91 @@ + + + + + res.config.settings.view.form.inherit.website.social.media.icon.style + res.config.settings + + + + + + +

Product Social Media Sharing

+
+
+
+ + +
+
+ Enable Social Media + Sharing + +
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/website_social_media_icon_style/views/share_social_media_templates.xml b/website_social_media_icon_style/views/share_social_media_templates.xml new file mode 100644 index 000000000..fba277071 --- /dev/null +++ b/website_social_media_icon_style/views/share_social_media_templates.xml @@ -0,0 +1,127 @@ + + + + + + +