在看板xml中增加判断逻辑选择不同的class属性值,以匹配对应的css颜色

This commit is contained in:
mgw
2023-07-06 12:26:35 +08:00
parent f31becc215
commit bc7f516d2d
4 changed files with 57 additions and 29 deletions

View File

@@ -1,11 +0,0 @@
.modal-content .o_cp_buttons {
display:none
}
.modal-content .o_control_panel {
display:none
}
.modal-content .o_list_button {
}

View File

@@ -0,0 +1,11 @@
.oe_kanban_card.kanban_color_1 {
background-color: red !important;
}
.oe_kanban_card.kanban_color_2 {
background-color: blue !important;
}
.oe_kanban_card.kanban_color_3 {
background-color: green !important;
}