mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
wip darkmode
This commit is contained in:
@@ -52,16 +52,31 @@ const PurchasesByItemsSheet = styled(FinancialSheet)`
|
||||
`;
|
||||
|
||||
const PurchasesByItemsDataTable = styled(ReportDataTable)`
|
||||
--x-table-total-border-bottom-color: #000;
|
||||
--x-table-total-border-top-color: #bbb;
|
||||
--x-table-total-border-bottom-color: var(
|
||||
--color-datatable-constrant-cell-border
|
||||
);
|
||||
--x-table-total-border-top-color: var(
|
||||
--color-datatable-constrant-cell-border
|
||||
);
|
||||
|
||||
.table {
|
||||
.tbody {
|
||||
.tr .td {
|
||||
border-bottom-width: 0;
|
||||
padding-top: 0.36rem;
|
||||
padding-bottom: 0.36rem;
|
||||
}
|
||||
.tr.row_type--TOTAL .td {
|
||||
border-top: 1px solid #bbb;
|
||||
border-top-width: 1px;
|
||||
font-weight: 500;
|
||||
border-bottom: 3px double #000;
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-top-color: var(--x-table-total-border-top-color);
|
||||
border-bottom-style: double;
|
||||
border-bottom-width: 3px;
|
||||
border-bottom-color: var(--x-table-total-border-bottom-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user