If someone comes from v17 or older Odoo versions, and they still have "blocked" lines, there are three options for them: - Develop glue module with another module that contains "blocked" field. - Don't use this commit. - Solve the "blocked" lines. Good luck!
31 lines
677 B
SCSS
31 lines
677 B
SCSS
.table-statement {
|
|
.amount {
|
|
text-align: right !important;
|
|
width: 14%; //spread 7 columns evenly
|
|
}
|
|
thead {
|
|
border-bottom: solid; // required for clean layout
|
|
tr th:first-child {
|
|
width: auto !important; // required for clean layout
|
|
}
|
|
tr th:last-child {
|
|
width: 16% !important; // required for boxed layout
|
|
}
|
|
}
|
|
}
|
|
|
|
.statement-reconciled {
|
|
font-size: smaller;
|
|
font-style: italic !important;
|
|
td:last-child {
|
|
font-style: italic !important;
|
|
}
|
|
}
|
|
|
|
.statement-outside-date-rank {
|
|
color: $red !important;
|
|
td:last-child {
|
|
color: $red !important;
|
|
}
|
|
}
|