mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
14 lines
388 B
Python
14 lines
388 B
Python
from odoo import models
|
|
|
|
|
|
class ThemeCobalt(models.AbstractModel):
|
|
_inherit = 'theme.utils'
|
|
|
|
def _theme_cobalt_post_copy(self, mod):
|
|
# For compatibility
|
|
# self.enable_asset('theme_common.compatibility_saas_10_2')
|
|
|
|
self.enable_asset('website.ripple_effect_scss')
|
|
self.enable_asset('website.ripple_effect_js')
|
|
self.enable_header_off_canvas()
|