Fix plugin browser freezing and add loading state: - Optimize plugin API filtering - Add individual plugin fetching - Add loading overlay with spinner - Improve error handling

This commit is contained in:
Marcus Quinn
2025-03-14 03:38:54 +00:00
parent 1d70eb4c33
commit 20bfd2b976
2 changed files with 87 additions and 21 deletions

View File

@ -193,4 +193,23 @@
.wpa-settings-content {
margin-top: 20px;
padding: 0;
}
/* Loading overlay */
.wpa-loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
}
.wp-list-table-container {
position: relative;
min-height: 200px;
}