odoo 改变字段显示

CrossPython / 2023-05-28 / 原文

通过scss文件处理.

使必填字段下划线加粗 .o_required_modifier .o_input{ border-bottom :2px solid $o-main-text-color !important; }

  

 

必填加型号,红色

.o_required_modifier::before{
content:"*";
color:red;
}