forked from OCA/web
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] web_tree_many2one_clickable: Fix pre-commit + improve readme
- Loading branch information
1 parent
1c00b0a
commit d1c985c
Showing
5 changed files
with
86 additions
and
75 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
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 +1,5 @@ | ||
This widget is currently not working on the product field in the lines tree of the sale order form, see https://github.com/OCA/web/pull/1438 for further details. | ||
This widget is currently not working on the product field in the lines tree of the | ||
sale order form, see https://github.com/OCA/web/pull/1438 for further details. | ||
|
||
To add this functionality to lines of sales, purchases and invoices, as they are | ||
special views, is required a glue module that add this feature. |
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
14 changes: 7 additions & 7 deletions
14
web_tree_many2one_clickable/static/src/css/web_tree_many2one_clickable.scss
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,10 +1,10 @@ | ||
td.o_many2one_cell { | ||
a { | ||
margin-left: 0.5em; | ||
visibility: hidden; | ||
} | ||
a { | ||
margin-left: 0.5em; | ||
visibility: hidden; | ||
} | ||
|
||
&:hover a { | ||
visibility: visible; | ||
} | ||
&:hover a { | ||
visibility: visible; | ||
} | ||
} |
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