[IMP] theme_*: adapt s_company_team_basic

task-4144648
Part of: task-4077427

Part-of: odoo/design-themes#919
Related: odoo/odoo#180736
Signed-off-by: Serge Bayet (seba) <seba@odoo.com>
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
This commit is contained in:
mano-odoo
2024-08-30 17:40:31 +02:00
committed by qsm-odoo
parent 758a0b0c36
commit 11b9705708
13 changed files with 248 additions and 0 deletions
+1
View File
@@ -17,6 +17,7 @@
'views/snippets/s_call_to_action.xml',
'views/snippets/s_sidegrid.xml',
'views/snippets/s_color_blocks_2.xml',
'views/snippets/s_company_team_basic.xml',
'views/snippets/s_cover.xml',
'views/snippets/s_card_offset.xml',
'views/snippets/s_features.xml',
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_company_team_basic" inherit_id="website.s_company_team_basic">
<!-- Person 1 -->
<xpath expr="(//img)[1]" position="attributes">
<attribute name="class" remove="rounded-circle" separator=" "/>
</xpath>
<!-- Person 2 -->
<xpath expr="(//img)[2]" position="attributes">
<attribute name="class" remove="rounded-circle" separator=" "/>
</xpath>
<!-- Person 3 -->
<xpath expr="(//img)[3]" position="attributes">
<attribute name="class" remove="rounded-circle" separator=" "/>
</xpath>
<!-- Person 4 -->
<xpath expr="(//img)[4]" position="attributes">
<attribute name="class" remove="rounded-circle" separator=" "/>
</xpath>
</template>
</odoo>