mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
24fb7e0ed1
*: (artists, buzzy, graphene) This commit removes the customization of icon colors, as we are not using them in the Odoo 18 redesign. It also adapts the background of numbers to increase contrasts. It also removes a title customization in the graphene theme as it was not changing anything from the default snippet. task-3672430 closes odoo/design-themes#840 Related: odoo/odoo#174166 Signed-off-by: Colin Louis (loco) <loco@odoo.com>
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_process_steps" inherit_id="website.s_process_steps">
|
|
<!-- Section -->
|
|
<xpath expr="//section" position="attributes">
|
|
<attribute name="class" add="o_cc o_cc5" separator=" "/>
|
|
<attribute name="data-oe-shape-data">{"shape":"web_editor/Rainy/08_001","flip":[]}</attribute>
|
|
</xpath>
|
|
<!-- Shape -->
|
|
<xpath expr="//div[hasclass('container')]" position="before">
|
|
<div class="o_we_shape o_web_editor_Rainy_08_001"/>
|
|
</xpath>
|
|
<xpath expr="//div[hasclass('s_process_step_number')]" position="attributes">
|
|
<attribute name="class" add="bg-black-15" remove="bg-primary-light" separator=" "/>
|
|
</xpath>
|
|
<xpath expr="(//div[hasclass('s_process_step_number')])[2]" position="attributes">
|
|
<attribute name="class" add="bg-black-15" remove="bg-primary-light" separator=" "/>
|
|
</xpath>
|
|
<xpath expr="(//div[hasclass('s_process_step_number')])[3]" position="attributes">
|
|
<attribute name="class" add="bg-black-15" remove="bg-primary-light" separator=" "/>
|
|
</xpath>
|
|
<xpath expr="(//div[hasclass('s_process_step_number')])[4]" position="attributes">
|
|
<attribute name="class" add="bg-black-15" remove="bg-primary-light" separator=" "/>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|