gpt4 book ai didi

css - 安装模块时如何在ODOO中安排css优先级?

转载 作者:行者123 更新时间:2023-11-28 10:27:03 25 4
gpt4 key购买 nike

Odoo版本:9社区

我为 "#o_shop_collapse_category li a" 定义了样式,但是它不是最后加载的,加载的样式是在 "/website_sale/static/src/css/website_sale 中定义的样式。 CSS”

当我定义我的模块时,它依赖于 website_sale,所以....我的模块是最后安装的,css 文件是用 last() 定义的,所以我的样式应该最后定义在website.assets_frontend.0.css

我的风格如下:

#o_shop_collapse_category li a{
border: 1px solid #ccc;
padding: 6px 4px 6px 20px;
margin-bottom: 5px;
}

它是这样加载的

<template id="celuphone_style" name="Celuphone style" inherit_id="website.assets_frontend">
<xpath expr="link[last()]" position="after">
<link rel="stylesheet" href="/client_CELUPHONE/static/less/style.less" type="text/less"/>
</xpath>
</template>

问题是Odoo如何定义模块优先级在编译less文件时

谢谢!

最佳答案

也许您应该只为模板定义添加优先级?

<template id="celuphone_style" name="Celuphone style" inherit_id="website.assets_frontend" priority="999">
<xpath expr="link[last()]" position="after">
<link rel="stylesheet" href="/client_CELUPHONE/static/less/style.less" type="text/less"/>
</xpath>
</template>

关于css - 安装模块时如何在ODOO中安排css优先级?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50604323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com