Update saga gridlines

pull/358/head
cagataycivici 2020-07-02 18:12:02 +03:00
parent edf14fdf84
commit 02c98a0526
5 changed files with 847 additions and 378 deletions

View File

@ -1756,7 +1756,7 @@
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
border: 1px solid rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef;
border-width: 0 0 1px 0; border-width: 0 0 1px 0;
padding: 1rem 1rem; padding: 1rem 1rem;
} }
@ -2427,7 +2427,7 @@
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
border: 1px solid rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef;
border-width: 0 0 1px 0; border-width: 0 0 1px 0;
padding: 1rem 1rem; padding: 1rem 1rem;
} }

View File

@ -1756,7 +1756,7 @@
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
border: 1px solid rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef;
border-width: 0 0 1px 0; border-width: 0 0 1px 0;
padding: 1rem 1rem; padding: 1rem 1rem;
} }
@ -2427,7 +2427,7 @@
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
border: 1px solid rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef;
border-width: 0 0 1px 0; border-width: 0 0 1px 0;
padding: 1rem 1rem; padding: 1rem 1rem;
} }

View File

@ -1756,7 +1756,7 @@
} }
.p-datatable .p-datatable-tbody > tr > td { .p-datatable .p-datatable-tbody > tr > td {
text-align: left; text-align: left;
border: 1px solid rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef;
border-width: 0 0 1px 0; border-width: 0 0 1px 0;
padding: 1rem 1rem; padding: 1rem 1rem;
} }
@ -2427,7 +2427,7 @@
} }
.p-treetable .p-treetable-tbody > tr > td { .p-treetable .p-treetable-tbody > tr > td {
text-align: left; text-align: left;
border: 1px solid rgba(0, 0, 0, 0.08); border: 1px solid #e9ecef;
border-width: 0 0 1px 0; border-width: 0 0 1px 0;
padding: 1rem 1rem; padding: 1rem 1rem;
} }

File diff suppressed because it is too large Load Diff

View File

@ -350,7 +350,7 @@ export default {
}, },
findIndexById(id) { findIndexById(id) {
let index = -1; let index = -1;
for (let i = 0; i < this.products.length; i++) { for (let i = 0; i &lt; this.products.length; i++) {
if (this.products[i].id === id) { if (this.products[i].id === id) {
index = i; index = i;
break; break;