| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <odoo>
- <!--
- M22 Popup Customization
- Hereda del snippet s_popup estándar de Odoo y agrega una variante M22
- con estilos glassmorphism y gradientes característicos del tema.
- -->
- <!-- Registrar variante M22 del popup -->
- <template id="m22_popup_variant" inherit_id="website.s_popup" name="M22 Popup Variant">
- <xpath expr="//div[@class='s_popup o_snippet_invisible']" position="attributes">
- <!-- Agregar variante M22 como opción -->
- <attribute name="data-vcss">m22</attribute>
- </xpath>
- </template>
- <!-- SCSS para el popup M22 -->
- <record id="s_popup_m22_scss" model="theme.ir.asset">
- <field name="name">M22 Popup SCSS</field>
- <field name="bundle">web.assets_frontend</field>
- <field name="path">theme_m22tc/static/src/scss/snippets/s_popup_m22.scss</field>
- </record>
- </odoo>
|