mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
6d86c5d242
*: theme_aviato, theme_monglia, theme_odoo_experts, theme_real_estate, theme_yes Since the removal of `container` divs in the `s_quotes_carousel` snippet, this commit adapts the theme customizations. This commit also fixes contrast issues related to the "Invert colors" option. task-4167538 Part of task-3619705 closes odoo/design-themes#898 Related: odoo/odoo#179389 Signed-off-by: Benjamin Vray (bvr) <bvr@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_quotes_carousel" inherit_id="website.s_quotes_carousel">
|
|
<xpath expr="//div[hasclass('s_quotes_carousel')]" position="attributes">
|
|
<attribute name="class" remove="carousel-dark" separator=" "/>
|
|
</xpath>
|
|
<!-- Quote 1 -->
|
|
<xpath expr="(//p[hasclass('s_blockquote_quote')])[1]" position="replace" mode="inner">
|
|
Amazing team! smiling, always nice to talk with, they always have the best advices for you, adapted to your needs!
|
|
</xpath>
|
|
<xpath expr="(//div[hasclass('s_blockquote_author')])[1]//span//span" position="replace" mode="inner">
|
|
Customer, bought a house
|
|
</xpath>
|
|
<!-- Quote 2 -->
|
|
<xpath expr="(//p[hasclass('s_blockquote_quote')])[2]" position="replace" mode="inner">
|
|
From start to finish, they were extremely professional, friendly, helpful and easy to do business with. Very happy with the experience and the company.
|
|
</xpath>
|
|
<xpath expr="(//div[hasclass('s_blockquote_author')])[2]//span//span" position="replace" mode="inner">
|
|
Customer, bought an appartement
|
|
</xpath>
|
|
<!-- Quote 3 -->
|
|
<xpath expr="(//p[hasclass('s_blockquote_quote')])[3]" position="replace" mode="inner">
|
|
Positive energy, great team spirit, hard workers and awesome people! I warmly recommend them!
|
|
</xpath>
|
|
<xpath expr="(//div[hasclass('s_blockquote_author')])[3]//span//span" position="replace" mode="inner">
|
|
Customer, sold an appartement
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|