fix: cluster status badge
This commit is contained in:
@@ -737,6 +737,43 @@ p {
|
||||
font-weight: 600;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
/* Cluster Status States */
|
||||
.cluster-status-online {
|
||||
background: linear-gradient(135deg, rgba(0, 255, 0, 0.15) 0%, rgba(0, 255, 0, 0.08) 100%);
|
||||
border: 1px solid rgba(0, 255, 0, 0.25);
|
||||
color: #00ff88;
|
||||
box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1);
|
||||
}
|
||||
|
||||
.cluster-status-offline {
|
||||
background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 0, 0, 0.08) 100%);
|
||||
border: 1px solid rgba(255, 0, 0, 0.25);
|
||||
color: #ff6b6b;
|
||||
box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.cluster-status-connecting {
|
||||
background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.08) 100%);
|
||||
border: 1px solid rgba(255, 193, 7, 0.25);
|
||||
color: #ffd54f;
|
||||
box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
|
||||
}
|
||||
|
||||
.cluster-status-discovering {
|
||||
background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%);
|
||||
border: 1px solid rgba(33, 150, 243, 0.25);
|
||||
color: #64b5f6;
|
||||
box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
|
||||
}
|
||||
|
||||
.cluster-status-error {
|
||||
background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.08) 100%);
|
||||
border: 1px solid rgba(244, 67, 54, 0.25);
|
||||
color: #ff8a80;
|
||||
box-shadow: 0 2px 8px rgba(244, 67, 54, 0.1);
|
||||
}
|
||||
|
||||
/* View Content Styles */
|
||||
|
||||
Reference in New Issue
Block a user