[FIX] theme_buzzy: fix s_timeline new page

The "s_timeline_dot" class from the timeline snippet has been replaced by
the "o_dot" class. This commit makes the necessary adaptation in the
"Buzzy theme".

task-4105080

Part-of: odoo/design-themes#919
Related: odoo/odoo#180736
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
This commit is contained in:
Benjamin Vray
2024-09-20 15:23:16 +02:00
committed by qsm-odoo
parent 4bcd32f992
commit 2e654f3175
+3 -3
View File
@@ -87,13 +87,13 @@
</template>
<template id="new_page_template_s_timeline" inherit_id="website.new_page_template_s_timeline">
<xpath expr="//span[hasclass('s_timeline_dot')]" position="attributes">
<xpath expr="//span[hasclass('o_dot')]" position="attributes">
<attribute name="class" add="bg-o-color-2" remove="bg-o-color-1" separator=" "/>
</xpath>
<xpath expr="(//span[hasclass('s_timeline_dot')])[2]" position="attributes">
<xpath expr="(//span[hasclass('o_dot')])[2]" position="attributes">
<attribute name="class" add="bg-o-color-2" remove="bg-o-color-1" separator=" "/>
</xpath>
<xpath expr="(//span[hasclass('s_timeline_dot')])[3]" position="attributes">
<xpath expr="(//span[hasclass('o_dot')])[3]" position="attributes">
<attribute name="class" add="bg-o-color-2" remove="bg-o-color-1" separator=" "/>
</xpath>
</template>