feat: highlight selected node
This commit is contained in:
@@ -3033,6 +3033,37 @@ p {
|
||||
animation: highlight-pulse 2s ease-in-out;
|
||||
}
|
||||
|
||||
/* Selected member card styling */
|
||||
.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(0, 0, 0, 0.2) !important;
|
||||
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-tertiary) 100%) !important;
|
||||
z-index: 10 !important;
|
||||
}
|
||||
|
||||
.member-card.selected::before {
|
||||
opacity: 0.8 !important;
|
||||
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%) !important;
|
||||
}
|
||||
|
||||
.member-card.selected .member-header {
|
||||
background: rgba(59, 130, 246, 0.05) !important;
|
||||
}
|
||||
|
||||
.member-card.selected .member-status {
|
||||
filter: brightness(1.2) !important;
|
||||
}
|
||||
|
||||
.member-card.selected .member-hostname {
|
||||
color: #3b82f6 !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
|
||||
.member-card.selected .member-ip {
|
||||
color: #60a5fa !important;
|
||||
}
|
||||
|
||||
@keyframes highlight-pulse {
|
||||
0%, 100% {
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
||||
|
||||
Reference in New Issue
Block a user