mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
99b5db0139
*: artists, aviato, bistro, nano, notes This commit adapts the design of `s_company_team_spotlight` for multiple themes, based on the new Odoo 18 snippet redesign. task-4147920 closes odoo/design-themes#903 Part-of: task-4077427 Related: odoo/odoo#179844 Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
32 lines
1.5 KiB
XML
32 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_company_team_spotlight" inherit_id="website.s_company_team_spotlight" name="Artists s_company_team_spotlight">
|
|
<!-- Section -->
|
|
<xpath expr="//section" position="attributes">
|
|
<attribute name="class" add="o_cc5" remove="o_cc1" separator=" "/>
|
|
</xpath>
|
|
<!-- Team Member 1 -->
|
|
<xpath expr="//div[hasclass('card')]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
<attribute name="style">border-width: 0px !important; border-radius: 0px !important;</attribute>
|
|
</xpath>
|
|
<!-- Team Member 2 -->
|
|
<xpath expr="(//div[hasclass('card')])[2]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
<attribute name="style">border-width: 0px !important; border-radius: 0px !important;</attribute>
|
|
</xpath>
|
|
<!-- Team Member 3 -->
|
|
<xpath expr="(//div[hasclass('card')])[3]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
<attribute name="style">border-width: 0px !important; border-radius: 0px !important;</attribute>
|
|
</xpath>
|
|
<!-- Team Member 4 -->
|
|
<xpath expr="(//div[hasclass('card')])[4]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
<attribute name="style">border-width: 0px !important; border-radius: 0px !important;</attribute>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|