mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
wip darkmode
This commit is contained in:
@@ -44,21 +44,34 @@ export default function VendorsBalanceSummaryTable({
|
||||
const VendorBalanceFinancialSheet = styled(FinancialSheet)``;
|
||||
|
||||
const VendorBalanceDataTable = styled(ReportDataTable)`
|
||||
--x-table-total-border-bottom-color: #333;
|
||||
--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:not(.no-results) {
|
||||
.td {
|
||||
border-bottom: 0;
|
||||
border-bottom-width: 0;
|
||||
padding-top: 0.4rem;
|
||||
padding-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
&.row_type--TOTAL {
|
||||
font-weight: 500;
|
||||
|
||||
.td {
|
||||
border-top: 1px solid #bbb;
|
||||
border-bottom: 3px double #333;
|
||||
font-weight: 500;
|
||||
border-top-width: 1px;
|
||||
font-weight: 500;
|
||||
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