feat: highlight selected node

This commit is contained in:
2025-09-16 14:44:55 +02:00
parent 27f93959ff
commit 13f771837b
4 changed files with 102 additions and 1 deletions

View File

@@ -236,6 +236,33 @@
display: none;
}
/* Selected member card styling for light theme */
[data-theme="light"] .member-card.selected {
border-color: #3b82f6 !important;
border-width: 2px !important;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 8px 25px rgba(148, 163, 184, 0.15) !important;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
}
[data-theme="light"] .member-card.selected::before {
display: block !important;
opacity: 0.6 !important;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%) !important;
}
[data-theme="light"] .member-card.selected .member-header {
background: rgba(59, 130, 246, 0.03) !important;
}
[data-theme="light"] .member-card.selected .member-hostname {
color: #1d4ed8 !important;
font-weight: 600 !important;
}
[data-theme="light"] .member-card.selected .member-ip {
color: #3b82f6 !important;
}
[data-theme="light"] .tabs-container {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(20px);