1

here I am again. In first place, sorry for my english. I am not good at this. Well, I would like to change the size of tree view in odoo 14, in Work Orderview. The employers need I to increase size because It is too small. Is there a way to increase size of all the view?

1 Answers1

0

You can create a css file at path /your_module/static/src/css/style.css and put this code in an xml file, which needs to be included in the manifest file also.

<odoo>
  <template id="assets_backend" name="3dview assets" inherit_id="web.assets_backend">
    <xpath expr="." position="inside">
      <link type="text/css" href="/your_module/static/src/css/style.css" rel="stylesheet"/>
    </xpath>
  </template>
</odoo>

After that, you can just craft your CSS file as you require.

holydragon
  • 6,158
  • 6
  • 39
  • 62