This commit is contained in:
overcuriousity
2025-09-15 13:35:58 +02:00
parent a261d706c8
commit 51902e3155
14 changed files with 382 additions and 171 deletions

View File

@@ -1440,6 +1440,50 @@ input[type="text"]:focus, select:focus {
.certificate-status.invalid { background: #ff6b6b; color: #fff; }
.certificate-status.expired { background: #ff9900; color: #000; }
.cert-summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: 0.5rem;
margin-bottom: 1rem;
}
.cert-stat-item {
text-align: center;
padding: 0.5rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid #333;
border-radius: 4px;
}
.cert-stat-value {
font-size: 1.2rem;
font-weight: 600;
color: #00ff41;
font-family: 'Roboto Mono', monospace;
}
.cert-stat-label {
font-size: 0.8rem;
color: #999;
margin-top: 0.25rem;
}
/* Status badges - extends existing badge system */
.cert-status.valid { background: #00ff41; color: #000; }
.cert-status.invalid { background: #ff6b6b; color: #fff; }
.cert-status.warning { background: #ff9900; color: #000; }
/* Certificate links */
.cert-link {
color: #00aaff;
text-decoration: none;
font-size: 0.85rem;
}
.cert-link:hover {
color: #00ff41;
text-decoration: underline;
}
/* === CORRELATION OBJECT LAYOUT === */
.correlation-grid {
@@ -1529,6 +1573,23 @@ input[type="text"]:focus, select:focus {
display: block;
}
.correlation-attr-name {
color: #00ff41;
font-weight: 600;
text-transform: capitalize;
}
.correlation-hint {
color: #999;
cursor: help;
opacity: 0.7;
}
.correlation-hint:hover {
opacity: 1;
color: #00ff41;
}
.node-list {
padding: 1rem 1.5rem;
display: flex;
@@ -1935,46 +1996,6 @@ input[type="text"]:focus, select:focus {
margin-left: 5px;
}
/* Loading and Error States */
.loading {
opacity: 0.6;
pointer-events: none;
}
.loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(26, 26, 26, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}
.loading-spinner {
width: 40px;
height: 40px;
border: 3px solid #444;
border-top: 3px solid #00ff41;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-text {
margin-top: 1rem;
color: #999;
font-family: 'Roboto Mono', monospace;
font-size: 0.9rem;
}
.error {
color: #ff6b6b !important;
border-color: #ff6b6b !important;
@@ -2004,48 +2025,6 @@ input[type="text"]:focus, select:focus {
display: none !important;
}
.text-center {
text-align: center;
}
.text-success {
color: #00ff41;
}
.text-warning {
color: #ff9900;
}
.text-error {
color: #ff6b6b;
}
.glow {
text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}
.glow-text {
text-shadow: 0 0 10px currentColor;
}
.amber {
color: #ff9900;
}
.glass-effect {
background: rgba(42, 42, 42, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.hover-lift {
transition: transform 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-2px);
}
/* Graph specific styles */
.vis-network {
background-color: #1a1a1a !important;