feat: add Stalker products functionality with filtering, pagination, and purge option

This commit is contained in:
Victor Noguera
2026-05-19 19:37:05 -04:00
parent aed0c11017
commit f6178a665c
6 changed files with 444 additions and 20 deletions

View File

@@ -48,6 +48,13 @@ p {
gap: 12px;
}
.button-row {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.toolbar input,
.toolbar select,
button {
@@ -63,6 +70,17 @@ button {
cursor: pointer;
}
button.danger {
border-color: #efb8b8;
color: #9f1c1c;
background: #fff6f6;
}
button:disabled {
cursor: not-allowed;
opacity: 0.58;
}
.table-wrap {
overflow: auto;
border: 1px solid #eceef0;