blob: 340eec95a68bf919dbcafa767fc847e0bc1708f5 (
plain)
1
2
3
4
5
6
7
|
/* 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;
}
|