Merge PR #1461 into 12.0

Signed-off-by pedrobaeza
pull/1467/head
OCA-git-bot 2019-12-11 15:51:03 +00:00
commit 022ef0a847
1 changed files with 65 additions and 9 deletions

View File

@ -1,14 +1,70 @@
.o_field_x2many_2d_matrix .row-total { $x2many_2d_matrix_max_height: 450px;
font-weight: bold;
}
.o_form_view .o_x2many_2d_matrix.o_list_view { .o_form_view .o_field_x2many_2d_matrix {
thead > tr > th { .table-responsive {
// Respect newline characters max-height: $x2many_2d_matrix_max_height;
white-space: pre-line; overflow-y: auto;
} }
> tfoot > tr > td { .o_x2many_2d_matrix.o_list_view {
padding: 0.75rem; > thead > tr > th {
white-space: pre-line;
position: sticky;
top: 0;
z-index: 1;
background-color: $o-list-footer-bg-color;
&.total {
right: 0;
}
}
> tbody {
> tr {
&:nth-of-type(2n+1) td.row-total, &:nth-of-type(2n+1) td:first-child {
background-color: mix(#000, #fff, 1%);
}
&:nth-of-type(2n) td.row-total, &:nth-of-type(2n) td:first-child {
background-color: white;
}
> td {
text-align: left;
&:first-child {
position: sticky;
left: 0;
border-right-width: 1px;
border-right-color: $gray-300;
border-right-style: solid;
box-shadow: -1px 5px 10px $gray-300;
}
&.row-total {
font-weight: bold;
position: sticky;
right: 0;
border-left-width: 1px;
border-left-color: $gray-300;
border-left-style: solid;
box-shadow: -1px 5px 10px $gray-300;
}
}
}
}
> tfoot > tr > td {
padding: 0.75rem;
text-align: left;
background-color: $o-list-footer-bg-color;
position: sticky;
bottom: 0;
&.col-total {
right: 0;
border-left-width: 1px;
border-left-color: $gray-300;
border-left-style: solid;
}
}
} }
} }