Initial commit: Mail packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:51 +02:00
commit 4e53507711
1948 changed files with 751201 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/* We want to show system's default font in the mail sent with the basic theme.
And so we remove font-family from basic theme while saving. But by doing so
in readonly mode is not getting proper font in odoo. So we added if from here.
*/
#wrapwrap .o_layout.o_basic_theme {
font-family: -apple-system, "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
/*
Make sure that the mail body takes all available space
*/
body.o_readonly.o_in_iframe {
margin: 0;
}

View file

@ -0,0 +1,21 @@
.openerp .oe_kanban_email_template {
width: 360px;
height: 340px;
}
.openerp .oe_kanban_email_template .oe_kanban_content{
height: 320px;
overflow: hidden !important;
}
.kanban_html_preview {
pointer-events: none;
width: 600px;
-webkit-transform: scale(.50);
-ms-transform: scale(.50);
transform: scale(.50);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
margin: 0;
}