mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2026-06-21 14:49:59 -04:00
- Created skeleton templates for events, notifications, plugins, presence, report, settings, and workflows to enhance loading states. - Implemented structured skeletons for tab details, tab events, maintenance backup, database tools, logging, multi-edit, presence, sessions, and system info. - Each template includes shimmer effects for loading indicators, improving user experience during data fetching.
13 lines
438 B
PHP
13 lines
438 B
PHP
<div class="skel-info-tab">
|
|
<!-- status banner -->
|
|
<div style="margin-bottom:16px">
|
|
<span class="skel-shimmer" style="height:44px; border-radius:4px; display:block;"></span>
|
|
</div>
|
|
<!-- card grid -->
|
|
<div style="display:flex; flex-wrap:wrap; gap:10px;">
|
|
<?php for ($i = 0; $i < 9; $i++): ?>
|
|
<span class="skel-shimmer" style="height:76px; width:190px; border-radius:4px;"></span>
|
|
<?php endfor; ?>
|
|
</div>
|
|
</div>
|