feat(ui): add centered 'Add Item' button to all storage locations

- Added persistent '+ Add Item' button at bottom of each storage location
- Button is centered and always visible (whether location has 0 or many items)
- Removed redundant '+ Add' button from storage location header (kept trash button)
- Reverted empty state to simple message instead of special button
- Added CSS for .rpg-storage-add-item-container to center button with margin
- Matches UI pattern from On Person and Assets tabs
- Removed debug logging from inventoryActions.js
This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-10-20 08:43:49 +11:00
parent 7da5413fdd
commit 5ec12cbf10
2 changed files with 11 additions and 3 deletions
+6
View File
@@ -4080,6 +4080,12 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
display: none;
}
.rpg-storage-add-item-container {
display: flex;
justify-content: center;
margin-top: 0.75rem;
}
/* Buttons */
.rpg-inventory-edit-btn,
.rpg-inventory-add-btn,