This commit is contained in:
Ahmed Bouhuolia
2025-08-31 17:18:50 +02:00
parent eebe98f43b
commit 9a89d90f6e
9 changed files with 85 additions and 48 deletions

View File

@@ -509,7 +509,7 @@ body.bp4-dark {
--color-transaction-locking-item-enabled-border: var(--color-dark-gray5);
// Reports items.
--color-report-section-title-text: var(var(--color-light-gray1));
--color-report-section-title-text: var(--color-light-gray1);
--color-report-item-background: var(--color-dark-gray3);
--color-report-item-border: var(--color-dark-gray5);
--color-report-item-top-border: var(--color-dark-gray5);

View File

@@ -3,7 +3,7 @@
--x-color-amount-text: #343463;
--x-color-label-text: #5d6f90;
:global(.bp4-dark)w & {
:global(.bp4-dark) & {
--x-color-label-text: var(--color-light-gray1);
--x-color-amount-text: var(--color-light-gray2);
}

View File

@@ -2,18 +2,15 @@
.bigcapital-datatable {
.table {
max-height: 300px;
border: 1px solid #d1dee2;
border: 1px solid var(--color-datatable-cell-border);
min-width: auto;
margin: 15px;
.tbody,
.thead .tr .td,
.tr .th {
background: #fff;
}
.tbody,
.tbody-inner {
height: 250px;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
@@ -22,7 +19,10 @@
.tr .td {
padding: 0.4rem;
margin-left: -1px;
border-left: 1px solid #ececec;
border-left: 1px solid var(--color-datatable-cell-border);
}
.tr:last-of-type .td {
border-bottom: 0;
}
}
}