mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
da5c40ff38
This commit changes the bg-200 static color that some snippets were using, for the second theme color so that blocks backgrounds connect well together. task-2542318 closes odoo/design-themes#15 Related: odoo/odoo#71426 Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<odoo>
|
||
<template id="s_three_columns" inherit_id="website.s_three_columns">
|
||
<!-- Column 1 -->
|
||
<xpath expr="//div[hasclass('card-body')]" position="replace">
|
||
<div class="card-body">
|
||
<h3 class="card-title">I sell. What should I do?</h3>
|
||
<p class="card-text">Discover tips and tricks when you sell a property. Whether it's appointments with the notary, fees, etc...</p>
|
||
</div>
|
||
</xpath>
|
||
<!-- Column 2 -->
|
||
<xpath expr="(//div[hasclass('card-body')])[2]" position="replace">
|
||
<div class="card-body">
|
||
<h3 class="card-title">What’s the value of my property?</h3>
|
||
<p class="card-text">Our online estimation tool, 100% free of charge, will guide you through the different steps to have a rigorous evaluation.</p>
|
||
</div>
|
||
</xpath>
|
||
<!-- Column 3 -->
|
||
<xpath expr="(//div[hasclass('card-body')])[3]" position="replace">
|
||
<div class="card-body">
|
||
<h3 class="card-title">Building and renovating</h3>
|
||
<p class="card-text">Here are some tips to get you started on a new construction or renovation project. Because it can't be improvised. </p>
|
||
</div>
|
||
</xpath>
|
||
</template>
|
||
</odoo>
|