Skip to content

Commit

Permalink
[IMP] itpp_mail: заметки подсвечиваются красным цветом
Browse files Browse the repository at this point in the history
  • Loading branch information
em230418 committed Jan 17, 2024
1 parent 9cf1b39 commit 0ee4d4a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions itpp_mail/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* Adds sound notification, when new message received in inbox (feature from Odoo 8.0, see `docs <doc/index.rst>`__ for configuration)

* Internal note is marked as red

Credits
=======

Expand Down
1 change: 1 addition & 0 deletions itpp_mail/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"assets": {
"web.assets_backend": [
"itpp_mail/static/src/models/*/*.js",
"itpp_mail/static/src/components/*/*.scss",
],
},
}
10 changes: 10 additions & 0 deletions itpp_mail/static/src/components/message/message.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.o_Message {
&.o-not-discussion {
border: 1px solid red;
background-color: #ffdee5;

&.o_Message_active {
background-color: #ffaaaa;
}
}
}

0 comments on commit 0ee4d4a

Please sign in to comment.