I want to change the contacts tree view
Tried do it with a custom module where i have on a css file, but it doesnt changes nothing
this is the /view/templates.xml:
<odoo>
<data>
<template id="tree" name="Tree_View_Color" inherit_id="base.view_partner_tree">
<xpath expr="." position="inside">
<link href="/tree_view_color/static/src/css/style.css" rel="stylesheet"
type="text/css"/>
</xpath>
</template>
</data>
</odoo>
this is the /static/src/css/style.css:
.openerp .oe_list_content > tbody > tr:nth-child(even) {
background-color: #FF9900;
}
i dont know where exactly did i fail, i thought maybe is on the tr declaration but im not sure
any idea? or some tip on how to do what i want?
Thanks! (btw, the version is odoo 12)