mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
ff5c23e613
With recent updates to the `s_opening_hours` snippet, an additional xpath has become redundant in the context of this theme's revamp. This commit removes the now unused xpath. task-4207030 Part of task-4077427 closes odoo/design-themes#1004 Related: odoo/odoo#181170 Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
17 lines
626 B
XML
17 lines
626 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_opening_hours" inherit_id="website.s_opening_hours">
|
|
<xpath expr="//div[hasclass('o_grid_item')][2]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
</xpath>
|
|
<xpath expr="//div[hasclass('o_grid_item')][3]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
</xpath>
|
|
<xpath expr="//div[hasclass('o_grid_item')][4]" position="attributes">
|
|
<attribute name="class" add="o_cc4" remove="o_cc1" separator=" "/>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|