Improve plugin browser: - Add Tutor LMS to LMS category - Move Free Plugins tab after Advanced - Fix loading overlay coverage - Add immediate tab loading with loading state - Implement plugin list caching (12 hours) - Add minimum loading time for better UX

This commit is contained in:
Marcus Quinn
2025-03-14 03:46:51 +00:00
parent 20bfd2b976
commit c771c5bb0f
2 changed files with 77 additions and 14 deletions

View File

@ -197,13 +197,13 @@
/* Loading overlay */
.wpa-loading-overlay {
position: absolute;
top: 0;
left: 0;
position: fixed;
top: 32px;
left: 160px;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 100;
background: rgba(255, 255, 255, 0.9);
z-index: 100000;
display: flex;
align-items: center;
justify-content: center;
@ -211,5 +211,10 @@
.wp-list-table-container {
position: relative;
min-height: 200px;
min-height: 400px;
}
.wp-list-table-container .spinner {
float: none;
margin: 0;
}