diff --git a/artify_backend_theme/README.rst b/artify_backend_theme/README.rst new file mode 100755 index 000000000..e2bf07d12 --- /dev/null +++ b/artify_backend_theme/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Artify Backend Theme +==================== +* Artify Backend Theme module for Odoo 18 community editions + +Installation +============ + - www.odoo.com/documentation/18.0/administration/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/18.0/legal/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* `Cybrosys Techno Solutions `__ +* Developer: (V18) ANFAS FAISAL K , Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@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 +========== +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/artify_backend_theme/__init__.py b/artify_backend_theme/__init__.py new file mode 100644 index 000000000..add02bee8 --- /dev/null +++ b/artify_backend_theme/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from .hooks import init_hooks diff --git a/artify_backend_theme/__manifest__.py b/artify_backend_theme/__manifest__.py new file mode 100644 index 000000000..b0fbef894 --- /dev/null +++ b/artify_backend_theme/__manifest__.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + "name": "Artify Backend Theme", + "description": "Minimalist and elegant backend " + "theme for Odoo 18, Backend Theme", + "summary": "Artify Backend Theme V18 is an attractive theme for backend", + "category": "Themes/Backend", + "version": "1.0", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + "depends": ['base', 'web', 'mail'], + "data": [ + 'views/icons.xml', + 'views/layout.xml', + ], + 'assets': { + 'web.assets_frontend': [ + 'artify_backend_theme/static/src/scss/login.scss', + ], + 'web.assets_backend': [ + 'artify_backend_theme/static/src/xml/styles.xml', + 'artify_backend_theme/static/src/xml/top_bar.xml', + 'artify_backend_theme/static/src/scss/variables.scss', + 'artify_backend_theme/static/src/scss/navigation_bar.scss', + 'artify_backend_theme/static/src/scss/style.scss', + 'artify_backend_theme/static/src/scss/sidebar.scss', + 'artify_backend_theme/static/src/js/NavBarArtify.js' + ], + }, + 'images': [ + 'static/description/banner.jpg', + 'static/description/theme_screenshot.jpg', + ], + 'license': 'LGPL-3', + 'pre_init_hook': 'init_hooks', + 'post_init_hook': 'init_hooks', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/artify_backend_theme/doc/RELEASE_NOTES.md b/artify_backend_theme/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..555ae6f67 --- /dev/null +++ b/artify_backend_theme/doc/RELEASE_NOTES.md @@ -0,0 +1,8 @@ +## Module + +#### 19.10.2024 + +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Artify Backend Theme + diff --git a/artify_backend_theme/hooks.py b/artify_backend_theme/hooks.py new file mode 100644 index 000000000..7956af7ee --- /dev/null +++ b/artify_backend_theme/hooks.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +import base64 +from odoo import tools + + +def process_menu_item(menu): + """ + Process a menu item by updating its web_icon_data. + param: + menu (record): The menu item to process. + """ + menu_list = [ + 'Contacts', 'Link Tracker', 'Dashboards', 'Sales', 'Invoicing', + 'Inventory', 'Purchase', 'Calendar', 'Point of Sale', 'Website', + 'Notes', 'CRM', 'Surveys', 'Project', 'SMS Marketing', + 'Email Marketing', 'Repairs', 'Manufacturing', 'Timesheets', + 'Fleet', 'Lunch', 'Live Chat', 'Maintenance', 'Expenses', 'Time Off', + 'Attendances', 'Recruitment', 'Employees', 'Members', 'eLearning', + 'Events' + ] + if menu.name not in menu_list: + return + img_path = tools.misc.file_path( + f'artify_backend_theme/static/src/img/icons/{menu.name}.png') + with open(img_path, "rb") as img_file: + menu.write({'web_icon_data': base64.b64encode(img_file.read())}) + + +def init_hooks(env): + """ + Initialize hooks by updating the web_icon_data of certain menus. + param: + env (Environment): Odoo environment. + """ + menu_item = env['ir.ui.menu'].search([('parent_id', '=', False)]) + for menu in menu_item: + process_menu_item(menu) diff --git a/artify_backend_theme/static/description/banner.jpg b/artify_backend_theme/static/description/banner.jpg new file mode 100644 index 000000000..a944cc38b Binary files /dev/null and b/artify_backend_theme/static/description/banner.jpg differ diff --git a/artify_backend_theme/static/description/icon.png b/artify_backend_theme/static/description/icon.png new file mode 100644 index 000000000..2c9635d94 Binary files /dev/null and b/artify_backend_theme/static/description/icon.png differ diff --git a/artify_backend_theme/static/description/img/1.png b/artify_backend_theme/static/description/img/1.png new file mode 100644 index 000000000..59f6c045c Binary files /dev/null and b/artify_backend_theme/static/description/img/1.png differ diff --git a/artify_backend_theme/static/description/img/2.png b/artify_backend_theme/static/description/img/2.png new file mode 100644 index 000000000..7c08ed026 Binary files /dev/null and b/artify_backend_theme/static/description/img/2.png differ diff --git a/artify_backend_theme/static/description/img/3.png b/artify_backend_theme/static/description/img/3.png new file mode 100644 index 000000000..7dd4a6d2c Binary files /dev/null and b/artify_backend_theme/static/description/img/3.png differ diff --git a/artify_backend_theme/static/description/img/4.png b/artify_backend_theme/static/description/img/4.png new file mode 100644 index 000000000..00efa83c2 Binary files /dev/null and b/artify_backend_theme/static/description/img/4.png differ diff --git a/artify_backend_theme/static/description/img/5.png b/artify_backend_theme/static/description/img/5.png new file mode 100644 index 000000000..b831b77c9 Binary files /dev/null and b/artify_backend_theme/static/description/img/5.png differ diff --git a/artify_backend_theme/static/description/img/6png.png b/artify_backend_theme/static/description/img/6png.png new file mode 100644 index 000000000..b54f1dc9d Binary files /dev/null and b/artify_backend_theme/static/description/img/6png.png differ diff --git a/artify_backend_theme/static/description/img/7.png b/artify_backend_theme/static/description/img/7.png new file mode 100644 index 000000000..e97cb4439 Binary files /dev/null and b/artify_backend_theme/static/description/img/7.png differ diff --git a/artify_backend_theme/static/description/img/V-18-GIF.gif b/artify_backend_theme/static/description/img/V-18-GIF.gif new file mode 100644 index 000000000..c1be84d03 Binary files /dev/null and b/artify_backend_theme/static/description/img/V-18-GIF.gif differ diff --git a/artify_backend_theme/static/description/img/arrows-repeat.svg b/artify_backend_theme/static/description/img/arrows-repeat.svg new file mode 100644 index 000000000..94fb8f7f9 --- /dev/null +++ b/artify_backend_theme/static/description/img/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/banner-bg-1.svg b/artify_backend_theme/static/description/img/banner-bg-1.svg new file mode 100644 index 000000000..7af9bab87 --- /dev/null +++ b/artify_backend_theme/static/description/img/banner-bg-1.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/banner-image.jpg b/artify_backend_theme/static/description/img/banner-image.jpg new file mode 100644 index 000000000..a944cc38b Binary files /dev/null and b/artify_backend_theme/static/description/img/banner-image.jpg differ diff --git a/artify_backend_theme/static/description/img/banner.svg b/artify_backend_theme/static/description/img/banner.svg new file mode 100644 index 000000000..3d4ed7a4a --- /dev/null +++ b/artify_backend_theme/static/description/img/banner.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/check.svg b/artify_backend_theme/static/description/img/check.svg new file mode 100644 index 000000000..8bc79333d --- /dev/null +++ b/artify_backend_theme/static/description/img/check.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/feature-star.svg b/artify_backend_theme/static/description/img/feature-star.svg new file mode 100644 index 000000000..a913270e8 --- /dev/null +++ b/artify_backend_theme/static/description/img/feature-star.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/gear.svg b/artify_backend_theme/static/description/img/gear.svg new file mode 100644 index 000000000..ce383059d --- /dev/null +++ b/artify_backend_theme/static/description/img/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/hire-odoo.svg b/artify_backend_theme/static/description/img/hire-odoo.svg new file mode 100644 index 000000000..9cfec4e44 --- /dev/null +++ b/artify_backend_theme/static/description/img/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/life-ring-icon.svg b/artify_backend_theme/static/description/img/life-ring-icon.svg new file mode 100644 index 000000000..b6c797ba1 --- /dev/null +++ b/artify_backend_theme/static/description/img/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/odoo-consultancy.svg b/artify_backend_theme/static/description/img/odoo-consultancy.svg new file mode 100644 index 000000000..c2c27e608 --- /dev/null +++ b/artify_backend_theme/static/description/img/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/artify_backend_theme/static/description/img/odoo-licencing.svg b/artify_backend_theme/static/description/img/odoo-licencing.svg new file mode 100644 index 000000000..8a520b40f --- /dev/null +++ b/artify_backend_theme/static/description/img/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/artify_backend_theme/static/description/img/patter.svg b/artify_backend_theme/static/description/img/patter.svg new file mode 100644 index 000000000..9b7b0d7cd --- /dev/null +++ b/artify_backend_theme/static/description/img/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/puzzle-piece-icon.svg b/artify_backend_theme/static/description/img/puzzle-piece-icon.svg new file mode 100644 index 000000000..ab5e56fa7 --- /dev/null +++ b/artify_backend_theme/static/description/img/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/responsive-backend-theme.png b/artify_backend_theme/static/description/img/responsive-backend-theme.png new file mode 100644 index 000000000..06611d78a Binary files /dev/null and b/artify_backend_theme/static/description/img/responsive-backend-theme.png differ diff --git a/artify_backend_theme/static/description/img/screenshot-1.svg b/artify_backend_theme/static/description/img/screenshot-1.svg new file mode 100644 index 000000000..72eeb921b --- /dev/null +++ b/artify_backend_theme/static/description/img/screenshot-1.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/screenshot-2.png b/artify_backend_theme/static/description/img/screenshot-2.png new file mode 100644 index 000000000..e13b876da Binary files /dev/null and b/artify_backend_theme/static/description/img/screenshot-2.png differ diff --git a/artify_backend_theme/static/description/img/screenshot-3.png b/artify_backend_theme/static/description/img/screenshot-3.png new file mode 100644 index 000000000..be1acdfd5 Binary files /dev/null and b/artify_backend_theme/static/description/img/screenshot-3.png differ diff --git a/artify_backend_theme/static/description/img/screenshot-4.png b/artify_backend_theme/static/description/img/screenshot-4.png new file mode 100644 index 000000000..1d01e11fc Binary files /dev/null and b/artify_backend_theme/static/description/img/screenshot-4.png differ diff --git a/artify_backend_theme/static/description/img/screenshot-5.svg b/artify_backend_theme/static/description/img/screenshot-5.svg new file mode 100644 index 000000000..923e355bf --- /dev/null +++ b/artify_backend_theme/static/description/img/screenshot-5.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/screenshot-img.png b/artify_backend_theme/static/description/img/screenshot-img.png new file mode 100644 index 000000000..a425d9ede Binary files /dev/null and b/artify_backend_theme/static/description/img/screenshot-img.png differ diff --git a/artify_backend_theme/static/description/img/screenshot-main.png b/artify_backend_theme/static/description/img/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/artify_backend_theme/static/description/img/screenshot-main.png differ diff --git a/artify_backend_theme/static/description/img/thumbnail-image.jpg b/artify_backend_theme/static/description/img/thumbnail-image.jpg new file mode 100644 index 000000000..8036990d9 Binary files /dev/null and b/artify_backend_theme/static/description/img/thumbnail-image.jpg differ diff --git a/artify_backend_theme/static/description/img/translate.svg b/artify_backend_theme/static/description/img/translate.svg new file mode 100644 index 000000000..eea729542 --- /dev/null +++ b/artify_backend_theme/static/description/img/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/artify_backend_theme/static/description/img/wrench-icon.svg b/artify_backend_theme/static/description/img/wrench-icon.svg new file mode 100644 index 000000000..4e0ce1d01 --- /dev/null +++ b/artify_backend_theme/static/description/img/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/artify_backend_theme/static/description/index.html b/artify_backend_theme/static/description/index.html new file mode 100644 index 000000000..e4fb2c1c8 --- /dev/null +++ b/artify_backend_theme/static/description/index.html @@ -0,0 +1,999 @@ + + + + + + + app index + + + + + + + + + + +
+ + + +
+
+
+
+ +
+
+
+
+ +
+ Supports: +
+ Community +
+
+ Enterprise +
+
+
+
+
+ Availability: +
+ Odoo Online +
+
+ Odoo.sh +
+
+ On Premise +
+
+
+
+
+
+ + + + +
+
+ +
+
+ + + + + + + + + + +
+
+
+
+
+

Our Features

+ +

+
+
+
+ +
+
+ + +
+
+
+ +
+
+
+
+
+ SETTINGS + + +
+ +
+
+
+ Apps + +
+ +
+
+ +
+ KANBAN VIEW + +
+ +
+
+
+ TREE VIEW + +
+ +
+
+
+ FORM VIEW + +
+ +
+
+
+
+ + +
+
+
+
+
+
+
+ HIGHLIGHT +

Artify Backend Theme Settings

+

To improve your experience with Odoo the Artify backend theme provides a fully configurable theme settings menu.

+ + +
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Apps

+

Easly accessible apps where it reveals the apps menu on just a click. Moreover, its also fully customisable with Artify backend theme.

+ +
+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

Responsive Layout

+

One of the critical highlights of the Artify backend theme is that it was genuinely responsive; moreover, it provides an efficient interface to manage a mobile device.

+ +
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Attractive User Interface

+

It provides fully attractive, and a elgant User Interface with completely customizability..

+ +
+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

Custom Form view

+

Artify Backend theme provides a fully modified and colorful form view with the full view experience.

+ +
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Custom Form view

+

Artify Backend theme provides a fully modified and colorful form view with the full view experience.

+ +
+
+ Grid item +
+ +
+
+
+ + +
+
+
+
+ +
+ + +
+ + + + + + + +
+
+
+
+

+ Fully Responsive
+ Layout. +

+ +
+

Now take advantage of everything your dashboard has to offer even on the go. Our + design are now fully responsive, enabling you to view and manage everything from the comfort of your + mobile device.

+
    +
  • Fully responsive
  • +
  • Fly-out hamburger menu on the left
  • +
  • Fits perfectly to all screen sizest
  • +
  • Quick access menu at the bottom in discuss
  • +
+
+
+
+
+
+
+ +
+ +
+
+
+
+ + + +
+
+
+
+
+ +
+ +
+
+
+
+

+ Kanban View
+ Layout +

+ +
+

The Artify Backend Theme V18 Gives You a Fully Modified Kanban View and Kanban Group View. The Section Wise Separated Stages give a Pleasant Experience And an Extraordinary Design To Your Content Tiles, Making The Tiles Look Great. It will Give You a Clean Layout with the New Color Combination and a Modified Font.

+
    +
  • Stages are Separated in View
  • +
  • New Color Combination
  • +
  • Modified Font
  • +
  • Clean Layout
  • +
  • Buttons with New Colors
  • +
  • Full Screen View
  • +
+
+
+
+ +
+
+ +
+
+
+
+

+ List View
+ Layout +

+ +
+

Artify Backend Theme V18 Gives You The Fully Modified List View. This Table Design Gives You More Beauty for Your Odoo Backend. It will Give You a Clean Layout with the New Color Combination and a Modified Font.

+
    +
  • List View
  • +
  • Stages are Separated in View
  • +
  • New Color Combination
  • +
  • Modified Font
  • +
  • Clean Layout
  • +
  • Buttons with New Colors
  • +
  • Full Screen View
  • +
+
+
+
+
+
+
+ +
+ +
+
+
+
+ + +
+
+
+
+
+ +
+ +
+
+
+
+

+ Form View
+ Layout +

+ +
+

The Artify Backend Theme V18 Gives You a Fully Modified Kanban View and Kanban Group View. The Section Wise Separated Stages give a Pleasant Experience And an Extraordinary Design To Your Content Tiles, Making The Tiles Look Great. It will Give You a Clean Layout with the New Color Combination and a Modified Font.

+
    +
  • Modified Form Style
  • +
  • New Style for Required Field
  • +
  • Full Screen Form View
  • +
  • New Chatter Style Under Form View
  • +
  • New Looks for Tabs
  • +
  • New Looks for Status Button
  • +
+
+
+
+ +
+
+ + + + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/artify_backend_theme/static/src/img/code_logo.png b/artify_backend_theme/static/src/img/code_logo.png new file mode 100644 index 000000000..124152a05 Binary files /dev/null and b/artify_backend_theme/static/src/img/code_logo.png differ diff --git a/artify_backend_theme/static/src/img/form_view.jpg b/artify_backend_theme/static/src/img/form_view.jpg new file mode 100644 index 000000000..23b97be4b Binary files /dev/null and b/artify_backend_theme/static/src/img/form_view.jpg differ diff --git a/artify_backend_theme/static/src/img/icons/Attendances.png b/artify_backend_theme/static/src/img/icons/Attendances.png new file mode 100644 index 000000000..fc76628ea Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Attendances.png differ diff --git a/artify_backend_theme/static/src/img/icons/CRM.png b/artify_backend_theme/static/src/img/icons/CRM.png new file mode 100644 index 000000000..cd697f6bc Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/CRM.png differ diff --git a/artify_backend_theme/static/src/img/icons/Calendar.png b/artify_backend_theme/static/src/img/icons/Calendar.png new file mode 100644 index 000000000..4bd9e08bf Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Calendar.png differ diff --git a/artify_backend_theme/static/src/img/icons/Contacts.png b/artify_backend_theme/static/src/img/icons/Contacts.png new file mode 100644 index 000000000..d76aab093 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Contacts.png differ diff --git a/artify_backend_theme/static/src/img/icons/Dashboards.png b/artify_backend_theme/static/src/img/icons/Dashboards.png new file mode 100644 index 000000000..698996340 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Dashboards.png differ diff --git a/artify_backend_theme/static/src/img/icons/Email Marketing.png b/artify_backend_theme/static/src/img/icons/Email Marketing.png new file mode 100644 index 000000000..117d7d323 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Email Marketing.png differ diff --git a/artify_backend_theme/static/src/img/icons/Employees.png b/artify_backend_theme/static/src/img/icons/Employees.png new file mode 100644 index 000000000..9dc8f5c63 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Employees.png differ diff --git a/artify_backend_theme/static/src/img/icons/Expenses.png b/artify_backend_theme/static/src/img/icons/Expenses.png new file mode 100644 index 000000000..4450dfbff Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Expenses.png differ diff --git a/artify_backend_theme/static/src/img/icons/Fleet.png b/artify_backend_theme/static/src/img/icons/Fleet.png new file mode 100644 index 000000000..8d5ebded2 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Fleet.png differ diff --git a/artify_backend_theme/static/src/img/icons/Inventory.png b/artify_backend_theme/static/src/img/icons/Inventory.png new file mode 100644 index 000000000..3aa14202a Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Inventory.png differ diff --git a/artify_backend_theme/static/src/img/icons/Invoicing.png b/artify_backend_theme/static/src/img/icons/Invoicing.png new file mode 100644 index 000000000..fed5cf7c1 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Invoicing.png differ diff --git a/artify_backend_theme/static/src/img/icons/Link Tracker.png b/artify_backend_theme/static/src/img/icons/Link Tracker.png new file mode 100644 index 000000000..1efeafaa9 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Link Tracker.png differ diff --git a/artify_backend_theme/static/src/img/icons/Live Chat.png b/artify_backend_theme/static/src/img/icons/Live Chat.png new file mode 100644 index 000000000..644c0c025 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Live Chat.png differ diff --git a/artify_backend_theme/static/src/img/icons/Lunch.png b/artify_backend_theme/static/src/img/icons/Lunch.png new file mode 100644 index 000000000..21fb08b15 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Lunch.png differ diff --git a/artify_backend_theme/static/src/img/icons/Maintenance.png b/artify_backend_theme/static/src/img/icons/Maintenance.png new file mode 100644 index 000000000..ba3cffaba Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Maintenance.png differ diff --git a/artify_backend_theme/static/src/img/icons/Manufacturing.png b/artify_backend_theme/static/src/img/icons/Manufacturing.png new file mode 100644 index 000000000..a55ad8483 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Manufacturing.png differ diff --git a/artify_backend_theme/static/src/img/icons/Members.png b/artify_backend_theme/static/src/img/icons/Members.png new file mode 100644 index 000000000..bea078226 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Members.png differ diff --git a/artify_backend_theme/static/src/img/icons/Notes.png b/artify_backend_theme/static/src/img/icons/Notes.png new file mode 100644 index 000000000..59ef13ce6 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Notes.png differ diff --git a/artify_backend_theme/static/src/img/icons/Point of Sale.png b/artify_backend_theme/static/src/img/icons/Point of Sale.png new file mode 100644 index 000000000..19b42a644 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Point of Sale.png differ diff --git a/artify_backend_theme/static/src/img/icons/Project.png b/artify_backend_theme/static/src/img/icons/Project.png new file mode 100644 index 000000000..bf5001fee Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Project.png differ diff --git a/artify_backend_theme/static/src/img/icons/Purchase.png b/artify_backend_theme/static/src/img/icons/Purchase.png new file mode 100644 index 000000000..b0383fe0d Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Purchase.png differ diff --git a/artify_backend_theme/static/src/img/icons/Recruitment.png b/artify_backend_theme/static/src/img/icons/Recruitment.png new file mode 100644 index 000000000..9afed7b40 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Recruitment.png differ diff --git a/artify_backend_theme/static/src/img/icons/Repairs.png b/artify_backend_theme/static/src/img/icons/Repairs.png new file mode 100644 index 000000000..4ee6967c2 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Repairs.png differ diff --git a/artify_backend_theme/static/src/img/icons/SMS Marketing.png b/artify_backend_theme/static/src/img/icons/SMS Marketing.png new file mode 100644 index 000000000..cbe445ea0 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/SMS Marketing.png differ diff --git a/artify_backend_theme/static/src/img/icons/Sales.png b/artify_backend_theme/static/src/img/icons/Sales.png new file mode 100644 index 000000000..3d99039bd Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Sales.png differ diff --git a/artify_backend_theme/static/src/img/icons/Surveys.png b/artify_backend_theme/static/src/img/icons/Surveys.png new file mode 100644 index 000000000..5df41ed33 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Surveys.png differ diff --git a/artify_backend_theme/static/src/img/icons/Time Off.png b/artify_backend_theme/static/src/img/icons/Time Off.png new file mode 100644 index 000000000..c55a9d367 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Time Off.png differ diff --git a/artify_backend_theme/static/src/img/icons/Timesheets.png b/artify_backend_theme/static/src/img/icons/Timesheets.png new file mode 100644 index 000000000..cca179874 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Timesheets.png differ diff --git a/artify_backend_theme/static/src/img/icons/Website.png b/artify_backend_theme/static/src/img/icons/Website.png new file mode 100644 index 000000000..6be3c375d Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/Website.png differ diff --git a/artify_backend_theme/static/src/img/icons/apps.png b/artify_backend_theme/static/src/img/icons/apps.png new file mode 100644 index 000000000..adb73fb34 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/apps.png differ diff --git a/artify_backend_theme/static/src/img/icons/close.png b/artify_backend_theme/static/src/img/icons/close.png new file mode 100644 index 000000000..a9413831d Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/close.png differ diff --git a/artify_backend_theme/static/src/img/icons/discuss.png b/artify_backend_theme/static/src/img/icons/discuss.png new file mode 100644 index 000000000..e3e34dbbe Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/discuss.png differ diff --git a/artify_backend_theme/static/src/img/icons/eLearning.png b/artify_backend_theme/static/src/img/icons/eLearning.png new file mode 100644 index 000000000..e022e6cf5 Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/eLearning.png differ diff --git a/artify_backend_theme/static/src/img/icons/monitor.png b/artify_backend_theme/static/src/img/icons/monitor.png new file mode 100644 index 000000000..80e391ccb Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/monitor.png differ diff --git a/artify_backend_theme/static/src/img/icons/settings.png b/artify_backend_theme/static/src/img/icons/settings.png new file mode 100644 index 000000000..0d3087a9c Binary files /dev/null and b/artify_backend_theme/static/src/img/icons/settings.png differ diff --git a/artify_backend_theme/static/src/img/login-bg.jpg b/artify_backend_theme/static/src/img/login-bg.jpg new file mode 100644 index 000000000..1df614b00 Binary files /dev/null and b/artify_backend_theme/static/src/img/login-bg.jpg differ diff --git a/artify_backend_theme/static/src/img/sale_quotation.jpg b/artify_backend_theme/static/src/img/sale_quotation.jpg new file mode 100644 index 000000000..88aaf4052 Binary files /dev/null and b/artify_backend_theme/static/src/img/sale_quotation.jpg differ diff --git a/artify_backend_theme/static/src/img/sidebar.jpg b/artify_backend_theme/static/src/img/sidebar.jpg new file mode 100644 index 000000000..8a0de761a Binary files /dev/null and b/artify_backend_theme/static/src/img/sidebar.jpg differ diff --git a/artify_backend_theme/static/src/js/NavBarArtify.js b/artify_backend_theme/static/src/js/NavBarArtify.js new file mode 100644 index 000000000..3a567f1f8 --- /dev/null +++ b/artify_backend_theme/static/src/js/NavBarArtify.js @@ -0,0 +1,72 @@ +/** @odoo-module */ + +import { NavBar } from '@web/webclient/navbar/navbar'; +import { patch } from "@web/core/utils/patch"; +import { useRef,onMounted } from "@odoo/owl"; + +patch(NavBar.prototype, { + setup() { + super.setup(); + this.SideBarPanel = useRef("sidebar_panel"); + this.openSidebar = useRef("openSidebar"); + this.closeSidebar = useRef("closeSidebar"); + this.topHeading = useRef("top_heading"); + this.mainNavBar = useRef("o_main_navbar"); + onMounted(()=>{ + // Using querySelector to find the element with the class '.o_action_manager'. + // This is a common approach when dealing with class-based selection. + // Important: Ensure that the element with the class '.o_action_manager' exists in the DOM. + this.actionManager = document.querySelector('.o_action_manager'); + }) + }, + + // Method: onClickOpenMenu + // Description: Handles the click event to open the menu. + onClickOpenMenu(event){ + // Show necessary elements when opening the menu. + this.closeSidebar.el.style.display = 'block' + this.openSidebar.el.style.display = 'none' + this.SideBarPanel.el.style.display = 'block' + + // Adjust styles for the action manager and top heading. + this.actionManager.style.marginLeft = '200px'; + this.actionManager.style.transition = 'all 0.1s linear'; + this.topHeading.el.style.marginLeft = '200px'; + this.topHeading.el.style.transition = 'all 0.1s linear'; + this.topHeading.el.style.width = 'auto'; + }, + + // Method: onClickCloseMenu + // Description: Handles the click event to close the menu. + onClickCloseMenu(event){ + // Show necessary elements when closing the menu + this.openSidebar.el.style.display = 'block'; + this.closeSidebar.el.style.display = 'none'; + this.SideBarPanel.el.style.display = 'none'; + + // Reset styles for the action manager and top heading. + this.actionManager.style.marginLeft = '0px'; + this.actionManager.style.transition = 'all 0.1s linear'; + this.topHeading.el.style.marginLeft = '0px'; + this.topHeading.el.style.transition = 'all 0.1s linear'; + this.topHeading.el.style.width = 'auto'; + + }, + + // Method: onClickMenuItem + // Description: Handles the click event for menu items. + onClickMenuItem(menu){ + // Hide the sidebar panel and reset styles for the action manager and top heading. + if (menu) { + this.menuService.selectMenu(menu); + this.SideBarPanel.el.style.display = 'none'; + this.actionManager.style.marginLeft = '0px' + this.topHeading.el.style.marginLeft = '0px'; + this.topHeading.el.style.transition = 'all .1s linear'; + this.topHeading.el.style.width = 'auto'; + this.closeSidebar.el.style.display = 'none'; + this.openSidebar.el.style.display = 'block'; + } + } + +}); diff --git a/artify_backend_theme/static/src/scss/login.scss b/artify_backend_theme/static/src/scss/login.scss new file mode 100644 index 000000000..62c69ce39 --- /dev/null +++ b/artify_backend_theme/static/src/scss/login.scss @@ -0,0 +1,52 @@ +// +main { + width: 100%; + background-repeat: no-repeat; + background-size: cover; +} + +//input starts +.oe_login_form input { + display: block; + width: 100%; + height: 40px !important; + padding: 10px 20px; + font-size: 13px; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da !important; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border-radius: .25rem; + -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; + transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out; + box-shadow: none !important; + margin-bottom:10px !important; +} +form label { + font-weight: 400 !important; +} +.oe_login_form a.btn.btn-secondary { + height: 40px; + display: flex; + align-items: center; + justify-content: space-between; + padding: 0.35rem 0.75rem; +} +.oe_login_form a.btn.btn-secondary i.fa.fa-database { + margin-left: 5px; +} + +.o_frontend_to_backend_nav .o_frontend_to_backend_apps_menu{ + box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05); + padding: 10px 10px; + border-top: 3px solid #f88181 !important; + border-radius: 7px 7px 3px 3px; + overflow: auto; +} diff --git a/artify_backend_theme/static/src/scss/navigation_bar.scss b/artify_backend_theme/static/src/scss/navigation_bar.scss new file mode 100644 index 000000000..fe15dd3d8 --- /dev/null +++ b/artify_backend_theme/static/src/scss/navigation_bar.scss @@ -0,0 +1,21 @@ +.o_main_navbar{ +background-color:$primary_color !important;} + +.o-mail-DiscussSystray-class > button { + color: black !important; +} +.o_menu_systray > button { + color: black !important; +} +.o_debug_manager > button{ + color: black !important; +} +.o_menu_sections_more > button{ + color: black !important; +} +.o_menu_toggle{ + color: black !important; + } +.o_last_breadcrumb_item{ + color: black !important; + } \ No newline at end of file diff --git a/artify_backend_theme/static/src/scss/sidebar.scss b/artify_backend_theme/static/src/scss/sidebar.scss new file mode 100644 index 000000000..e2880f48e --- /dev/null +++ b/artify_backend_theme/static/src/scss/sidebar.scss @@ -0,0 +1,136 @@ +#sidebar_panel { + + height: calc(100% - 0%); + position: fixed; + top: 0px; + background-color:#dedde1; + display: none; + width: 200px; + overflow-y: scroll; + -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */ + scrollbar-width: none; /* Hide scrollbar for Firefox */ + z-index: 999; + border:1px solid; + border-color:transparent; + border-right-color: $secondary_color; +} +#sidebar_panel::-webkit-scrollbar { + display: none; /* Hide scrollbar for Chrome, Safari and Opera */ +} +.sidebar_panel .sidebar { + padding: 0; + white-space: nowrap; + padding-bottom: 20px; + padding-top: 5px; +} + +.sidebar_panel .sidebar .sidebar_logo { + padding-top: 20px; + text-align: center; + padding-bottom: 20px; +} +.sidebar_panel .sidebar .sidebar_logo img { + max-width: 150px; +} + +.sidebar_panel .sidebar .sidebar_head { + padding-top: 20px; + padding-left: 15px; + color: #6a7187; + font-size: 14px; +} + +.sidebar_panel .sidebar .sidebar_menu { + list-style: none; + margin: 0; + padding: 0; +} + +.sidebar_panel .sidebar .sidebar_menu li { + margin: 0; + padding: 0; + border: 0px; + display: block; +} + +.sidebar_panel .sidebar .sidebar_menu li a { + margin: 0; + border: 0px; + display: block; + cursor: pointer; + overflow: hidden; + padding: 8px 10px 8px 25px; + color: $secondary_color; + font-size: 14px; + transition:.3s all; +} +.sidebar_panel .sidebar .sidebar_menu li:hover a { + background: #1e2230; + color: #fff; +} +.sidebar_panel .nav-link { + opacity: .5; + transition:.3s all; +} +.sidebar_panel .sidebar a.nav-link.active { + color: #626262 !important; + opacity: 1; +} + +.sidebar_panel .sidebar .sidebar_menu li a .sidebar_img { + width: 20px; + margin-right: 8px; +} + +.navbar-toggler span { + display: block; + background-color: $secondary_color; + height: 3px; + width: 22px; + margin-top: 4px; + border-radius: 2px; + margin-bottom: 5px; + position: relative; + left: 0; + opacity: 1; + transition: all 0.35s ease-out; + transform-origin: center left; +} +/* top line needs a little padding */ +.navbar-toggler span:nth-child(1) { + margin-top: 0.3em; +} +/** + * Animate collapse into X. + */ +/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */ +.navbar-toggler:not(.collapsed) span:nth-child(1) { + transform: translate(15%, -33%) rotate(45deg); +} +/* center line goes transparent */ +.navbar-toggler:not(.collapsed) span:nth-child(2) { + opacity: 0; +} +/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button */ +.navbar-toggler:not(.collapsed) span:nth-child(3) { + transform: translate(15%, 33%) rotate(-45deg); +} +/** + * Animate collapse open into hamburger menu + */ +/* top line moves back to initial position and rotates back to 0 degrees */ +.navbar-toggler span:nth-child(1) { + transform: translate(0%, 0%) rotate(0deg); +} +/* middle line goes back to regular color and opacity */ +.navbar-toggler span:nth-child(2) { + opacity: 1; +} +/* bottom line goes back to initial position and rotates back to 0 degrees */ +.navbar-toggler span:nth-child(3) { + transform: translate(0%, 0%) rotate(0deg); +} + + + + diff --git a/artify_backend_theme/static/src/scss/style.scss b/artify_backend_theme/static/src/scss/style.scss new file mode 100644 index 000000000..55a271e02 --- /dev/null +++ b/artify_backend_theme/static/src/scss/style.scss @@ -0,0 +1,1539 @@ +@font-face { + font-family: "Nunito Sans", sans-serif; + src: url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap"); +} + +body { + font-family: "Nunito Sans", sans-serif !important; + color: #202121 !important; + + * { + list-style-type: none; + } +} + +.o_web_client { + background: #f4f7f6 !important; +} + +.navbar-toggler { + padding: 0.75rem 1.5rem; +} + +.top_heading { + display: flex; + + ul { + li { + list-style: none !important; + + span { + color: $secondary_color !important; + } + } + } + + div { + span { + color: $secondary_color !important; + text-transform: uppercase !important; + font-weight: normal; + font-size: 13px !important; + padding: 5px; + + @media screen and(max-width:992px) { + padding: 0px 5px !important; + } + + &:hover { + color: $sub_color2 !important; + background: #ced4da !important; + } + } + } + + .o_nav_entry { + color: $secondary_color !important; + text-transform: uppercase !important; + font-weight: normal; + font-size: 13px !important; + + @media screen and(max-width:992px) { + padding: 0px 5px !important; + } + + &:hover { + color: $sub_color2 !important; + background: transparent !important; + } + } +} + +.o_form_button_save { + // background-color: #3fb0ac; + // border-radius: 0; + font-size: 13px; + border: 1px solid #35a7a369 !important; + text-transform: uppercase !important; + padding: 6px 12px !important; + margin-left: 3px; + + &:hover { + background-color: white !important; + color: $secondary_color !important; + } +} + +.o_form_button_cancel { + font-size: 13px; + padding: 6px 12px !important; + border-color: #ffbcbc; + margin-left: 5px; +} + +.o_statusbar_buttons, +.o_DiscussSidebar { + .btn-primary { + background-color: #3fb0ac; + font-size: 11px; + border-radius: 3px !important; + border-color: #3fb0ac; + border: 1px solid !important; + border-color: #3fb0ac !important; + text-transform: uppercase !important; + padding: 7px 10px !important; + + &:hover { + background-color: white !important; + color: $secondary_color !important; + } + } + + .btn-secondary { + font-size: 12px; + padding: 6px 10px !important; + border-color: #3fb0ac; + border-radius: 5px; + } +} + +.o_control_panel { +// padding: 0px 30px; + + .o_control_panel_main { +// margin-top: 20px; + + .btn-secondary { + color: #202121; + background-color: transparent; + border-color: #202121 !important; +// height: 35px !important; + + &:hover { + color: #f88181 !important; + border-color: #f88181 !important; + } + + &.active { + color: #fff !important; + background-color: #f88181 !important; + border-color: #f88181 !important; + } + } + + .o_control_panel_breadcrumbs { +// width: 45% !important; + } + + .o_control_panel_navigation { +// width: 55% !important; +// height: 84px; + + .btn-group { + gap: 1px !important; + } + } + } + + .o_cp_pager { + .btn-secondary { + display: inline-block; +// width: 34px; +// height: 34px; + border: 1px solid; + border-radius: 50% !important; + cursor: pointer; + transition: all 0.3s ease-in-out; + border-color: #202121; + opacity: 1 !important; + + &:hover { + color: #f88181 !important; + border-color: #f88181 !important; + } + } + + .o_pager_previous { + margin-right: 10px; + } + } + + .o_breadcrumb { + font-size: 20px !important; + } +} + +.o_searchview .o_searchview_facet .o_searchview_facet_label { + background-color: #3fb0ac; + border-color: none; +} + +.o_searchview .o_searchview_facet { + border: none; +} + +.o_searchview { + position: relative; + background-color: white; + border-radius: 3px; + padding: 5px 25px 5px 5px; +} + +.o_searchview .o_searchview_icon { + top: 10px !important; + left: auto; + bottom: auto; + right: 9px !important; +} + +.o_control_panel>div { + margin: 15px 0px !important; +} + +.o_onboarding .o_onboarding_step .o_onboarding_step_content .o_onboarding_step_action { + font-size: 14px !important; + font-weight: 500 !important; +} + +.o_onboarding.o_onboarding_violet { + background-image: url(/artify_backend_theme/static/src/img/sale_quotation.jpg) !important; + background-size: cover !important; +} + +.o_onboarding_wrap { + padding: 40px 16px !important; +} + +.o_onboarding.o_onboarding_violet .o_onboarding_wrap { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%) !important; + background-color: transparent !important; +} + +.o_list_table { + thead { + tr { + th { + color: black; + } + } + } +} + +.ui-sortable { + tr { + td { + font-size: 13px !important; + vertical-align: middle !important; + } + } +} + +.bg-info-light { + background-color: #3fb0ac !important; +} + +.o_main_navbar { + height: auto; + padding: 8px 0px; + padding-left: 1px; + background: transparent !important; +} + +.o_field_number { + color: $secondary_color !important; + font-size: 15px !important; + font-weight: 700; +} + +.o_control_panel .breadcrumb>li { + text-transform: uppercase !important; + + a { + color: $secondary_color !important; + } +} + +.o_form_view .oe_button_box { + padding: 8px 10px !important; +} + +.o_form_view .o_form_statusbar>.o_statusbar_status>.o_arrow_button.btn-primary.disabled { + background-color: #3fb0ac !important; +} + +.o_form_view .o_form_statusbar>.o_statusbar_status>.o_arrow_button.btn-primary.disabled::before { + border-left-color: #3fb0ac !important; +} + +.o_form_view .o_form_statusbar>.o_statusbar_status>.o_arrow_button.btn-primary.disabled::after { + border-left-color: #3fb0ac !important; +} + +.o_form_view .o_form_statusbar { + padding: 15px !important; + margin-bottom: 40px !important; + margin-top: -45px !important; +} + +.o_form_view .o_form_sheet_bg>.o_form_sheet { + border-radius: 8px !important; + border: none !important; + margin-top: 0px !important; + margin-bottom: 60px !important; + max-width: 1500px !important; + + @media screen and(max-width:992px) { + margin: 50px !important + } +} + +.o_form_view .o_form_sheet_bg { + background: url(/artify_backend_theme/static/src/img/form_view.jpg) !important; + padding-top: 45px !important; +} + +.o_field_widget.o_datepicker .o_datepicker_button { + top: 10px !important; + right: 10px !important; +} + +.o_form_view .o_row { + width: 103% !important; + margin: 0 !important; +} + +.o_form_view .o_form_label { + color: $secondary_color !important; + font-size: 15px; +} + +.nav { + justify-content: start !important; +} + +.o_form_view .o_notebook { + margin-top: 40px !important; +} + +.ui-autocomplete .ui-menu-item.o_m2o_dropdown_option>a { + color: $secondary_color !important; +} + +.nav-tabs .nav-link { + color: $secondary_color !important; + font-size: 15px !important; +} + +.nav-tabs .nav-link.active { + font-size: 17px !important; + font-weight: normal; + border-bottom-color: white !important; + border-bottom-width: 2px !important; +} + +td { + a { + color: $secondary_color !important; + } +} + +.o_form_view .oe_button_box .btn.oe_stat_button { + height: auto !important; +} + +.o_form_view .oe_button_box .btn.oe_stat_button>.o_stat_info, +.o_form_view .oe_button_box .btn.oe_stat_button>span { + margin-bottom: 0px !important; +} + +.bg-light, +.o-mail-DiscussSidebar { + background-size: cover; + background-position: center; + background-image: linear-gradient(#eff8f3c2, #f2ebebd4), url(/artify_backend_theme/static/src/img/sidebar.jpg); +} + +.o_DiscussSidebarMailbox { + color: #efefef; + padding: 10px 15px; + + .o_DiscussSidebarMailbox_item { + margin-left: 8px; + } + + .o_ThreadIcon { + font-size: 15px; + } +} + +.o_DiscussSidebarMailbox:hover { + color: black; +} + +.o_DiscussSidebarMailbox.o-active { + background: transparent; + color: #f88181; + font-weight: 700; +} + +.o_DiscussSidebarCategory_title { + font-size: 16px; + font-weight: 700; + color: white; +} + +.o_DiscussSidebarCategory_header { + margin: 12px 15px; +} + +.o_DiscussSidebarCategory_title { + font-size: 16px; + font-weight: 700; + color: white !important; + letter-spacing: 1px; +} + +.o_DiscussSidebarCategory_command { + color: white !important; +} + +.o_DiscussSidebarCategory_item { + color: #ffffffab !important; +} + +.o_DiscussSidebarCategoryItem_command:not(:hover) { + color: black !important; +} + +.o_ThreadViewTopbar { + height: 57.25px; + color: black; + letter-spacing: 1px; +} + +.o-mail-Thread { + margin: 30px; + box-shadow: 0px 0px 6px 4px #d9d7d769 !important; + border-radius: 5px; +} + +.o_Message_prettyBody { + p { + a { + background-color: #875a7b; + background-color: #3fb0ac !important; + font-size: 11px; + border-radius: 0 !important; + border-color: #3fb0ac; + border: 1px solid !important; + border-color: #3fb0ac !important; + text-transform: uppercase !important; + padding: 7px 10px !important; + } + } +} + +.o-mail-Message.o-mail-Message-active { + padding: 15px; +} + +.o-mail-Message-avatarContainer { + margin-top: 20px; +} + +.o-mail-Message-core { + padding-top: 20px; + padding-bottom: 20px; +} + +.o-mail-Message { + margin-left: 15px; + margin-right: 15px; + border-radius: 8px; + box-shadow: 0px 0px 6px 4px rgba(242, 242, 242, 1) !important; +} + +.sidebar_panel { + height: calc(100% - 0%); + position: fixed; + top: 0px; + // background-image: linear-gradient(to right top, #051937, #39235a, #7a1d69, #bb0060, #eb123e) !important; + display: none; + width: 200px !important; + overflow-y: scroll; + -ms-overflow-style: none; + scrollbar-width: none; + z-index: 999; + border: 1px solid; + border-color: transparent; + border-right-color: #173e43; + + @media screen and(max-width:992px) { + border: none !important; + box-shadow: 5px -1px 11px 0px rgba(245, 245, 245, 0.58); + } + + .sidebar { + .sidebar_logo { + padding-left: 25px; + text-align: left !important; + } + + .sidebar_head { + padding-top: 25px !important; + padding-left: 25px !important; + color: #202121 !important; + font-size: 25px !important; + padding-bottom: 10px !important; + font-weight: bold !important; + } + + .sidebar_menu li a { + display: block !important; + padding: 24px 36px !important; + font-size: 16px !important; + font-weight: bold !important; + color: #202121 !important; + cursor: pointer !important; + border-bottom: 1px solid #e6eaea !important; + opacity: 1; + + &:hover { + background: #f4f7f6 !important; + } + } + } +} + +.btn-primary { + background-color: #3fb0ac; + border-radius: 5px !important; + border-color: #3fb0ac; + text-transform: uppercase !important; + border: 1px solid !important; + border-color: #3fb0ac !important; + &:hover { + background-color: white !important; + color: $secondary_color !important; + } +} + +.badge-primary { + background-color: #3fb0ac; + font-size: 11px; + border-radius: 0 !important; + border-color: #3fb0ac; + border: 1px solid !important; + border-color: #3fb0ac !important; + text-transform: uppercase !important; + padding: 7px 10px !important; + font-weight: 400; + + &:hover { + background-color: white !important; + color: $secondary_color !important; + } +} + +.o_main_navbar .o_menu_sections { + margin: auto; +} + +.o_Message_content *:not(li) { + max-width: 100%; + overflow-x: visible; +} + +.o_Message_prettyBody p a { + padding: 4px 10px !important; + color: white; +} + +.o_Message_actionListContainer { + position: absolute; + top: -0.5rem; + left: auto; + bottom: auto; + right: 0; +} + +.btn-primary:disabled { + background-color: #3fb0ac !important; +} +// END + +.o_control_panel { + .o-dropdown--menu { + box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05); + padding: 10px 10px; + border-top: 3px solid $sub_color2 !important; + // border-radius: 7px 7px 3px 3px; + overflow: visible; + + // top: 10% !important; + .dropdown-item.active, + .dropdown-item.selected { + + padding-left: 10px !important; + + &:before { + position: absolute; + top: 3px; + left: 5px; + bottom: auto; + right: auto; + transform: translate(-1.5em, 90%); + font: 0.7em/1em FontAwesome; + color: #71639e; + content: "\f00c"; + + } + } + + .dropdown-item { + font-size: 14px; + color: #0b1c39; + text-transform: capitalize; + + &:focus { + padding-left: 15px !important; + } + + &:hover { + color: $sub_color2 !important; + } + + &:after { + position: absolute; + top: 4px; + left: auto; + bottom: auto; + right: -6px; + transform: translate(-0.6em, 0.6em); + } + } + } +} + +.o_optional_columns_dropdown_toggle { + top: 10px !important; + right: 5px !important; +} + +.o_list_view .o_list_table tfoot>tr>td { + padding: 15px !important; +} + +.navbar-toggler span { + background-color: #173e43; + height: 2px !important; + width: 30px !important; +} + +.o_MessageList { + background-color: transparent !important; +} + +.o_MessageActionList { + background-color: #80cac8; + border: 1px solid #80cac847; + border-radius: 0.3rem; +} + +.o_search_panel { + box-shadow: 0px 0px 6px 4px rgba(242, 242, 242, 1) !important; +} + +select.o_field_widget.o_input.o_input_dropdown .o_dropdown_button { + top: 10px !important; + right: 10px !important; +} + +.o_main_navbar .o_menu_brand { + color: #202121 !important; + font-size: 1.9rem; +} + +.o_menu_systray { + + .o_MessagingMenu_icon, + .fa-clock-o { + color: #202121 !important; + font-size: 22px !important; + } +} + +.o_content { + .o_kanban_view.o_kanban_ungrouped { + padding: 15px 20px !important; + margin: 20px 20px; + border-radius: 3px; + } + + .o_kanban_view .o_kanban_record { + border-radius: 5px; + margin: 15px; + box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05); + -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05); + transition: box-shadow 0.3s ease-out, transform 0.3s ease-out, opacity 0.2s ease-out; + border: none; + transform: translate(0px, 0px); + -webkit-transform: translate(0px, 0px); + -moz-transform: translate(0px, 0px); + -webkit-transition: 0.5s; + transition: 0.5s; + + &:hover { + transform: translate(0, -4px); + -webkit-transform: translate(0, -4px); + -moz-transform: translate(0, -4px); + -webkit-transition: 0.5s; + transition: 0.5s; + box-shadow: rgba(45, 45, 45, 0.05) 0px 2px 2px, rgba(49, 49, 49, 0.05) 0px 4px 4px, + rgba(42, 42, 42, 0.05) 0px 8px 8px, rgba(32, 32, 32, 0.05) 0px 16px 16px, + rgba(49, 49, 49, 0.05) 0px 32px 32px, rgba(35, 35, 35, 0.05) 0px 64px 64px; + } + + .o_kanban_record_title { + color: #202121; + font-size: 16px; + font-weight: 700; + } + + .badge-default { + color: #f88181 !important; + } + } +} + +.overlay_1 { + position: relative; + + :after { + content: " "; + height: 100%; + width: 100%; + z-index: 1000; + background: #00000014; + position: absolute; + left: 0; + right: 0; + bottom: 0; + top: 0; + opacity: 0.5; + } +} + +.oe_module_icon { + border-radius: 50%; +} + +.o_search_panel { + flex: 0 0 240px; + + .o_search_panel_category_value header { + align-items: center; + display: -webkit-box; + display: -webkit-flex; + display: flex; + justify-content: space-between; + padding: 6px 6px 8px 0px; + } + + .list-group-item header.active { + background-color: $sub_color2 !important; + + .o_search_panel_label_title { + font-weight: 800 !important; + color: white !important; + + &:hover { + color: white !important; + } + } + } + + .o_search_panel_section { + .o_search_panel_section_header { + padding: 15px 0; + letter-spacing: 1px; + font-size: 16px; + } + } + + .list-group-item { + .o_search_panel_label_title { + width: 100%; + display: inline-block; + max-width: 100%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + vertical-align: top; + font-size: 14px; + font-weight: 500; + letter-spacing: 0.5px; + text-transform: uppercase; + color: #232323; + transition: color 0.3s ease; + + &:hover { + color: $sub_color2; + } + } + } +} + +/* width */ +::-webkit-scrollbar { + width: 8px; +} + +/* Track */ +::-webkit-scrollbar-track { + background: #f1f1f1; + border-radius: 10px; +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #888; + border-radius: 5px; +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #555; +} + +.o_search_panel_counter { + background-color: #f4f7f6 !important; + border-radius: 50%; + width: 25px; + text-align: center; + color: black !important; +} + +.o_search_panel .o_search_panel_category .o_search_panel_section_icon { + color: #ed7f80; +} + +.o_form_renderer .o_setting_container .position-sticky .settings_tab { + background: white; + -webkit-box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.29); + box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.29); + border-radius: 5px; + margin: 15px; +} + +.o_form_renderer .o_setting_container .position-sticky .settings_tab .tab { + color: $secondary_color; + + &:hover { + color: $primary_color; + } +} + +.o_form_renderer .o_setting_container .position-sticky .settings_tab .selected { + background: $secondary_color; + color: white; + + &:hover { + color: white; + } +} + +.o_content { + .o_form_view .o_form_sheet_bg>.o_form_sheet { + margin-top: 0px !important; + } +} + + + + +.o_required_modifier.o_input, +.o_required_modifier .o_input { + background: #ebebeb !important; + + &:focus { + background: white !important; + } +} + +.o_field_monetary { + padding-right: 23px !important; + margin-right: 8px !important; + border: none !important; + + span { + margin-right: 15px !important; + } +} + +.o_field_many2manytags { + border: none !important; + + .badge-pill { + height: 40px; + border-radius: 5px !important; + + .o_badge_text { + line-height: 3.1 !important; + } + } +} + +.o_form_view .o_row { + align-items: unset !important; +} + +.o_field_partner_autocomplete { + .o_input { + background: transparent !important; + border: 1px solid #d7d7d7 !important; + padding: 6px !important; + } +} + +// Responsive starts +@media screen and(max-width:992px) { + .o_action_manager.sidebar_margin { + margin-left: 0 !important; + } + + .sidebar_panel .sidebar { + position: relative; + padding-top: 0px !important; + } + + .sidebar_panel .sidebar_close { + display: block !important; + } +} + +@media screen and(max-width:480px) { + .sidebar_panel .sidebar .sidebar_logo img { + max-width: 112px; + } + + .sidebar_panel .sidebar .sidebar_logo { + padding-top: 20px; + text-align: center; + padding-bottom: 5px; + } +} + +@media screen and(max-width:576px) { + .o_form_renderer .o_setting_container { + display: block !important; + } +} + +.o-dropdown--menu { + @media screen and(max-width:992px) { + top: 75px !important; + } +} + +.o_NotificationGroup_imageContainer { + max-width: 55px !important; + padding: 0px; + width: 55px !important; + border-radius: 0% !important; + + .o_NotificationGroup_image { + width: 100%; + border-radius: 0% !important; + height: auto; + } +} + +.o_ThreadPreview_imageContainer { + max-width: 55px !important; + padding: 0px; + width: 40px !important; + border-radius: 0% !important; + + .o_ThreadPreview_image { + width: 100%; + border-radius: 0% !important; + height: auto; + } +} + +.o_ThreadPreview { + .o_ThreadPreview_partnerImStatusIcon { + height: 5px !important; + width: 5px !important; + border-radius: 50%; + } +} + +.o_MessagingMenu_dropdownMenu { + padding: 15px !important; +} + +.o_ChatWindowHeader { + background-color: #387f84; + color: #fff; + height: 40px; +} + +.o_ChatWindow_newMessageForm { + padding: 15px !important; +} + +.o_ChatWindow_newMessageFormInput { + outline: none; + border: 1px solid #dee2e6; + padding: 8px; + border-radius: 5px; +} + + +.o_list_table_ungrouped { + tbody { + tr { + .o_required_modifier { + background-color: transparent !important; + } + + td { + // padding: 10px !important; + vertical-align: middle !important; + + } + + td.o_required_modifier { + background-color: transparent !important; + + } + } + } +} + + +.o_form_view .o_horizontal_separator { + color: #173e43 !important; + font-weight: bold; + font-size: 14px; +} + +.o_ChatterTopbar_button { + color: #173e43 !important; +} + +.o_button_icon { + color: #3fb0ac !important; +} + + + +.o_list_table_ungrouped tbody tr td.o_required_modifier { + background-color: var(--table-bg) !important; +} + +.o_form_view .o_row { + width: 100% !important; +} + +.o_form_view .o_row>div { + margin-right: 0; + margin-left: 0; +} + + +.modal-body .o_form_sheet_bg .o_form_sheet.position-relative { + padding: 10px; +} + + +.o_group { + .o_input { + + width: 100%; + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #000000; + border-radius: 0; + transition: outline 0.15s ease-in-out; + -webkit-border-radius: 0; + -moz-border-radius: 0; + -ms-border-radius: 0; + -o-border-radius: 0; + box-shadow: none; + border-color: 1px solid; + -webkit-transition: outline 0.15s ease-in-out; + -moz-transition: outline 0.15s ease-in-out; + -ms-transition: outline 0.15s ease-in-out; + -o-transition: outline 0.15s ease-in-out; + } +} + +.fa-bug { + color: black !important; +} + +.o_stat_info { + span { + color: #173e43 !important; + } +} + +.o_stat_value { + color: #173e43 !important; +} + +.o_form_view .o_form_uri>span:first-child { + color: #173e43 !important; +} + +.btn-link { + color: #173e43 !important; +} + +.o_field_many2manytags { + background: transparent !important; + border: 1px solid #d7d7d7 !important; + padding: 0; +} + +.oe_topbar_name { + color: black !important; +} + +.o_menu_sections { + .o-dropdown--menu { + box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05); + padding: 10px 10px; + border-top: 3px solid $sub_color2 !important; + border-radius: 7px 7px 3px 3px; + overflow: auto; + + // top: 10% !important; + .dropdown-item { +// padding: 6px 10px !important; + font-size: 14px; + color: #0b1c39; + text-transform: capitalize; + + &:hover { + color: $sub_color2 !important; + } + } + + &::before { + border-style: solid; + border-width: 0 6px 6px 6px; + border-color: transparent transparent $sub_color2 transparent; + content: ""; + top: -9px; + left: 43%; + position: absolute; + transition: 0.3s; + z-index: 999; + overflow: visible; + } + } + + .dropdown-item:focus { + color: $sub_color2 !important; + } +} + +.o_main_navbar .dropdown-toggle { + color: #3e5f61 !important; +} + + +.o_form_renderer .o_setting_container .settings>.app_settings_block h2, +.o_form_renderer .o_setting_container .settings>.app_settings_block .h2 { + color: initial !important; + font-style: initial !important; + font-weight: bolder !important; + font-size: 20px; + margin: 0 0 !important; + padding: -0.6rem 16px; +} + + +.o_menu_sections.d-none.d-md-flex.flex-grow-1.flex-shrink-1 { + color: #173e43 !important +} + + +.o_MessagingMenu_counter.badge { + background-color: darkcyan !important; +} + +.o_ActivityMenuView_counter.badge { + background-color: darkcyan !important; +} + + +.settings_tab { + width: 180px; +} + +.d-md-block { + display: flex !important; + align-items:center; +} + +.icon.d-none.d-md-block { + display: none !important; +} + +.breadcrumb-item.active { + color: currentColor; +} + +b, +strong { + font-weight: bold; +} + +.o_kanban_renderer .o_kanban_record .o_kanban_card_header_title { + font-weight: bold; +} + +.o_search_panel .o_search_panel_category .o_search_panel_section_icon { + color: #ed7f80 !important; +} + +.o_dropdown_title { + text-transform: initial; +} + +.o_kanban_renderer { + --KanbanRecord-margin-v: 26px; + --KanbanRecord-margin-h: 17px; +} + +.o_kanban_renderer .o_kanban_record .oe_kanban_color_0, +.o_kanban_renderer .o_kanban_quick_create { + font-weight: bold; + background-color: white; +} + +.o_kanban_renderer .o_kanban_record>div:not(.o_dropdown_kanban), +.o_kanban_renderer .o_kanban_quick_create { + border: 1px solid white; + background-color: white; +} + +.o_control_panel .o_cp_bottom_right { + align-items: center; +} + +::placeholder { + color: dimgray; +} + +.o_kanban_renderer.o_renderer.d-flex.o_kanban_ungrouped.align-content-start.flex-wrap.justify-content-start.o_res_partner_kanban { + padding: 27px; +} + +.text-muted { + --text-opacity: 1; +} + +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #262e35; +} + +.fa.fa-bars {} + +.o_web_client .o_main_navbar { + -webkit-box-flex: 0; + -webkit-flex: 0 0 auto; + flex: 0 0 auto; + display: flex; + justify-content: space-between; +} + +.o_main_navbar .o_menu_systray { + align-items: center; + display: flex; +} + + +.dropdown-item.o_nav_entry.d-none { + margin-top: 7px; +} + +.top_heading div span { + color: #3e5f61 !important +} + +.top_heading .o_nav_entry { + color: black !important; +} + +.o_data_cell.cursor-pointer.o_field_cell.o_list_char.fw-bold { + color: black; +} + + + + +.d-none { + display: none; +} + + +.o_menu_sections.d-none { + display: flex !important; +} + +.o-dropdown.dropdown.o-dropdown--no-caret.d-none { + display: flex !important; +} + +.text-bg-danger { + color: #FFFFFF !important; + background-color: #f98f9e !important; +} + +td .o_field_widget .text-bg-success { + color: black !important; + background-color: #7fedb9 !important; +} + +.o_data_cell.cursor-pointer.o_field_cell.o_list_char.fw-bold { + color: #130101; + font-weight: bold; +} + +.o_field_statusbar>.o_statusbar_status>.o_arrow_button.o_arrow_button_current.disabled { + background-color: #3eb0ac; + color: #FFFFFF; +} + +.o_field_statusbar>.o_statusbar_status>.o_arrow_button.o_arrow_button_current.disabled::after, +.o_field_statusbar>.o_statusbar_status>.o_arrow_button.o_arrow_button_current.disabled::before { + border-left-color: #3eb0ac; +} + +.btn-fill-odoo:hover, +.btn-odoo:hover { + color: #FFFFFF; + background-color: #3eb0ac; + border-color: #3eb0ac; +} + +.btn-fill-odoo, +.btn-odoo { + color: #FFFFFF; + background-color: #3fb0ac; + border-color: #3fb0ac; +} + +.btn-outline-primary:hover { + color: #FFFFFF; + background-color: #3eb0ac; + border-color: #3eb0ac; +} + +.btn-outline-primary { + color: #3eb0ac; + border-color: #3eb0ac; +} + +@media screen and (max-width: 992px) { + .o_form_view .o_form_sheet_bg>.o_form_sheet { + margin: 0px !important; + + } +} + +.btn.btn-info.btn-sm { + display-direction: row-reverse; +} + +.btn-secondary { + color: #000000 !important; + background-color: #FFFFFF; + border-color: #e7e7e7; + color: #66598f; +} + +.o_main_navbar .o_menu_sections .o_nav_entry, +.o_main_navbar .o_menu_sections .dropdown-toggle { + background-color: transparent !important; +} + +.o_cp_searchview .dropdown { + margin-top: 0 !important; +} + +.o_base_settings_view .o_form_renderer .o_setting_container .settings_tab .tab.selected { + color: white; +} + +.closeSidebar.icon { + width: 26px; +} + +.o-form-buttonbox .oe_stat_button { + margin-top: 0px; +} + +.o_control_panel_navigation .o_cp_pager .o_pager .o_pager_counter { + padding-top: 9px !important; + align-self: stretch !important; +} + +.o_mobile_menu_toggle .oi.oi-panel-right { + color: #111; + margin-top: 5px; +} + + + +@media (max-width: 915px) { + .o_main_navbar .o_menu_sections { + display: none !important; + } +} + +@media (max-width: 915px) { + .o_user_menu { + display: none !important; + } +} + +.o_kanban_mobile .o_x2m_control_panel .o_cp_buttons { + overflow-x: scroll; + -ms-overflow-style: none; + /* Hide scrollbar in IE/Edge */ + scrollbar-width: none; + /* Hide scrollbar in Firefox */ +} + +.o_kanban_mobile .o_x2m_control_panel .o_cp_buttons::-webkit-scrollbar { + display: none; +} + +.o_form_status_indicator { + margin-right: -10px !important; +} + +.o_main_navbar .o_menu_sections .o_nav_entry { +// color: #173e43; +} + +.o_menu_sections .o-dropdown.show { + background: #e0edfa; +} + +.o_list_view .o_list_renderer { + overflow-x: hidden; +} + +.dropdown-item .company_label { + font-size: 14px; +} + +.o_breadcrumb.align-self-stretch { + align-self: center !important; +} + +.o_control_panel .o_breadcrumb { + font-size: 15px !important; +} + +@media (min-width: 768px) { + .o_control_panel_breadcrumbs .align-self-md-end { + align-self: center !important; + } +} + +.o_form_view .o_field_widget.o_input_3ch input { + width: 100% !important; +} + +.o_form_view .o_field_integer.oe_inline { + max-width: 4rem !important; +} + +.o_setting_container .position-sticky ::-webkit-scrollbar { + display: none; +} + +@media (max-width: 767.98px) { + .o_base_settings_view .o_form_renderer .o_setting_container .settings_tab { + flex: 0 0 40px; + flex-direction: row; + position: relative; + overflow: hidden; + overflow-x: auto; + padding: 0; + height: auto !important; + width: auto; + border-bottom: none; + } +} + +.o_setting_container .position-sticky .settings_tab.h-100 { + height: auto !important; +} + +.o_form_view .oe_inline{ + width: auto !important; + padding-top: unset; + } + +.o_input.flex-grow-1.flex-shrink-1{ + padding-top: unset !important; + } + +.o_input{ + padding: inherit !important; + } + + +.o_field_property_definition .o_field_property_definition_type .o_input_dropdown input { + background-repeat: no-repeat; + background-size: contain; + padding-left: 25px !important; + background-position-x: 0px; + background-position-y: 3px; + background-size: 20px; +} + + + .o_main_navbar .o_nav_entry, .o_main_navbar .dropdown-toggle { + color: #3e5f61 !important; +} + + +@media (max-width: 767.98px) { + .o_user_menu .o_user_avatar { + margin-right: 0px !important; + } +} diff --git a/artify_backend_theme/static/src/scss/variables.scss b/artify_backend_theme/static/src/scss/variables.scss new file mode 100644 index 000000000..8d9fe0ecd --- /dev/null +++ b/artify_backend_theme/static/src/scss/variables.scss @@ -0,0 +1,5 @@ +$primary_color: #E63946; +$secondary_color: #173e43; +$secondary_color2: #173e43; +$sub_color1: #a381f8; +$sub_color2: #f88181; \ No newline at end of file diff --git a/artify_backend_theme/static/src/xml/styles.xml b/artify_backend_theme/static/src/xml/styles.xml new file mode 100644 index 000000000..462967106 --- /dev/null +++ b/artify_backend_theme/static/src/xml/styles.xml @@ -0,0 +1,9 @@ + + + + + + d-flex align-items-center + + + \ No newline at end of file diff --git a/artify_backend_theme/static/src/xml/top_bar.xml b/artify_backend_theme/static/src/xml/top_bar.xml new file mode 100644 index 000000000..f491f8e05 --- /dev/null +++ b/artify_backend_theme/static/src/xml/top_bar.xml @@ -0,0 +1,73 @@ + + + + + + + + top_heading + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/artify_backend_theme/views/icons.xml b/artify_backend_theme/views/icons.xml new file mode 100644 index 000000000..030516a28 --- /dev/null +++ b/artify_backend_theme/views/icons.xml @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/artify_backend_theme/views/layout.xml b/artify_backend_theme/views/layout.xml new file mode 100644 index 000000000..6a184c4a6 --- /dev/null +++ b/artify_backend_theme/views/layout.xml @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file