-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from nuxly/dev_issue_60
Dev issue 60
- Loading branch information
Showing
6 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
# nuxly-odoo-addons | ||
Our own addons Odoo | ||
|
||
[//]: # (addons) | ||
|
||
Available addons | ||
---------------- | ||
addon | version | summary | ||
--- | --- | --- | ||
[home_menu_background](home_menu_background/) | 14.0.0.0 | Background customization | ||
[isacompta_export](isacompta_export/) | 14.0.0.0 | ASCII Export for ISACOMPTA | ||
[timesheet_reminder_mail](timesheet_reminder_mail/) | 14.0.0.0 | Timesheet reminder | ||
|
||
[//]: # (end addons) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Background customization | ||
|
||
This module aims to customize odoo background (overlayed image, colors). | ||
|
||
## Usage | ||
|
||
This version is a beta version. You must manually edit the SCSS (`/home_menu_background/static/scss/ui.scss`) file to customize the background. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# -*- coding: utf-8 -*- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# -*- coding: utf-8 -*- | ||
{ | ||
'name': "Background customization", | ||
|
||
'summary': """ | ||
Background customization for web client and login screen""", | ||
|
||
'description': """ | ||
Customize odoo background (overlayed image, colors) for web client and login screen. | ||
""", | ||
|
||
'author': "Nuxly", | ||
'website': "https://www.nuxly.com", | ||
|
||
# Categories can be used to filter modules in modules listing | ||
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml | ||
# for the full list | ||
'category': 'Technical', | ||
'version': '14.0.0.0', | ||
|
||
# any module necessary for this one to work correctly | ||
'depends': ['base', 'web_enterprise'], | ||
|
||
# always loaded | ||
'data': [ | ||
'views/templates.xml', | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Shared with web client and login screen | ||
.o_home_menu_background { | ||
background: url(/web_enterprise/static/src/img/home-menu-bg-overlay.svg), | ||
linear-gradient(to right bottom, #A7C5D0, #A7C5D0); | ||
background-size: cover; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
<template id="assets_common" name="home_menu_background assets common" inherit_id="web_enterprise.assets_common"> | ||
<xpath expr="//link[@href='/web_enterprise/static/src/scss/ui.scss']" position="replace"> | ||
<link rel="stylesheet" type="text/scss" href="/home_menu_background/static/scss/ui.scss"/> | ||
</xpath> | ||
</template> | ||
</odoo> |