penyesuaian UI master

This commit is contained in:
2024-06-12 18:35:55 +07:00
parent a42d328222
commit fe740dc3c1
10 changed files with 220 additions and 75 deletions

View File

@@ -27,9 +27,19 @@
<div class="col-md-6 text-right">
<button
class="btn btn-secondary"
style="
color: #000000 !important;
border-color: #bef264 !important;
background-color: #bef264 !important;
"
(click)="openAddMasterModal()"
>
<i class="feather ft-plus"></i>&nbsp; Add new master
<i
class="feather ft-plus"
style="color: #ffffff !important"
></i
>&nbsp;
<span style="font-weight: 600">Add new master</span>
</button>
</div>
</div>
@@ -54,7 +64,7 @@
ngx-datatable-cell-template
let-rowIndex="rowIndex"
>
{{ rowIndex + 1 }}
<p style="color: #ffffff">{{ rowIndex + 1 }}</p>
</ng-template>
</ngx-datatable-column>
<ngx-datatable-column
@@ -63,13 +73,13 @@
[minWidth]="90"
>
<ng-template ngx-datatable-header-template>
<span>Category Name</span>
<span style="color: #ffffff">Name</span>
</ng-template>
<ng-template
let-value="value"
ngx-datatable-cell-template
>
{{ value }}
<p style="color: #ffffff">{{ value }}</p>
</ng-template>
</ngx-datatable-column>
<ngx-datatable-column
@@ -78,13 +88,15 @@
[minWidth]="90"
>
<ng-template ngx-datatable-header-template>
<span>Status</span>
<span style="color: #ffffff">Status</span>
</ng-template>
<ng-template
ngx-datatable-cell-template
let-value="value"
>
{{ value === "2" ? "Aktif" : "Tidak Aktif" }}
<p style="color: #ffffff">
{{ value === "2" ? "Aktif" : "Tidak Aktif" }}
</p>
</ng-template>
</ngx-datatable-column>
<ngx-datatable-column
@@ -92,6 +104,9 @@
[flexGrow]="1"
[minWidth]="150"
>
<ng-template ngx-datatable-header-template>
<span style="color: #ffffff">Actions</span>
</ng-template>
<ng-template
ngx-datatable-cell-template
let-rowIndex="rowIndex"
@@ -99,12 +114,20 @@
>
<button
class="btn btn-sm btn-warning mr-1"
style="
background-color: #000000 !important;
border-color: #bef264 !important;
"
(click)="editRow(row)"
>
<i class="ficon feather ft-edit"></i>
</button>
<button
class="btn btn-sm btn-danger"
style="
background-color: #000000 !important;
border-color: #bef264 !important;
"
(click)="deleteRow(row)"
>
<i class="ficon feather ft-trash-2"></i>