[IMP] web_responsive: Bigger checkboxes in list view

This commit is contained in:
Alexandre D. Díaz
2021-02-01 12:06:24 +01:00
parent 700319d313
commit efa36cf2e5
6 changed files with 58 additions and 0 deletions

View File

@@ -618,6 +618,39 @@ html .o_web_client .o_main .o_main_content {
}
}
// Big checkboxes
.o_list_view {
.o_list_record_selector {
.custom-checkbox {
margin-right: 10px;
.custom-control-label {
top: -19px;
}
}
}
.o_data_cell {
.custom-checkbox .custom-control-label {
top: -6px;
}
}
.custom-checkbox {
margin-right: 10px;
.custom-control-label {
&::after {
width: 24px;
height: 24px;
}
&::before {
outline: none !important;
border: 1px solid #4c4c4c;
width: 24px;
height: 24px;
}
}
}
}
// Waiting Cursor
.oe_wait {
cursor: progress;