Files
design-themes/theme_artists/views/snippets/s_timeline_images.xml
T
mano-odoo bd4b876b57 [IMP] theme_*: adapt s_timeline_images to themes
theme_anelusia, theme_artists, theme_buzzy, theme_nano, theme_yes

This commit adapt the `s_timeline_images` snippet to the themes.

task-4105285
Part of task-4077427

closes odoo/design-themes#995

Related: odoo/odoo#184760
Signed-off-by: Ivan Klapka (ivkl) <ivkl@odoo.com>
2025-02-14 17:53:19 +00:00

32 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_timeline_images" inherit_id="website.s_timeline_images">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="o_cc o_cc5" separator=" "/>
</xpath>
<!-- Milestone #1-->
<xpath expr="//img" position="attributes">
<attribute name="class" remove="rounded" separator=" "/>
</xpath>
<xpath expr="//span[hasclass('o_dot')]" position="attributes">
<attribute name="class" add="text-o-color-4" remove="text-o-color-1" separator=" "/>
</xpath>
<xpath expr="//div[hasclass('o_dot_line')]" position="attributes">
<attribute name="style">border-color: var(--o-color-1) !important;</attribute>
</xpath>
<!-- Milestone #2 -->
<xpath expr="(//img)[2]" position="attributes">
<attribute name="class" remove="rounded" separator=" "/>
</xpath>
<xpath expr="(//span[hasclass('o_dot')])[2]" position="attributes">
<attribute name="class" add="text-o-color-4" remove="text-o-color-1" separator=" "/>
</xpath>
<xpath expr="(//div[hasclass('o_dot_line')])[2]" position="attributes">
<attribute name="style">border-color: var(--o-color-1) !important;</attribute>
</xpath>
</template>
</odoo>