Fixing PR442:

- Fixed:
    - UI design elemets
    - UI and button colors
    - JSON export
    - recent activity is default again
- Removed:
    - Online/Offline UI labels
    - left-click menu on hosts
- Added:
    - small pulsing dot inside the hosts to indicate online status like in the left bar
This commit is contained in:
Steven Josefs
2025-12-30 18:20:57 +01:00
parent 8106999d1e
commit 0216a2d2fe
4 changed files with 257 additions and 93 deletions

View File

@@ -292,8 +292,13 @@ function AppContent() {
)}
{showNetworkGraph && (
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden flex flex-col pt-16">
<NetworkGraphView />
<div className="h-screen w-full visible pointer-events-auto static overflow-hidden">
<NetworkGraphView
isTopbarOpen={isTopbarOpen}
rightSidebarOpen={rightSidebarOpen}
rightSidebarWidth={rightSidebarWidth}
isStandalone={true}
/>
</div>
)}