Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
125 lines
2.3 KiB
CSS
125 lines
2.3 KiB
CSS
/* ==========================================
|
|
SUSPENSION OVERLAY STYLES
|
|
Account suspension/blocking display
|
|
========================================== */
|
|
|
|
.suspension-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
z-index: 20000;
|
|
justify-content: center;
|
|
align-items: center;
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.suspension-overlay.active {
|
|
display: flex;
|
|
}
|
|
|
|
.suspension-content {
|
|
background: var(--bp-surface);
|
|
border-radius: 20px;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.5);
|
|
border: 1px solid var(--bp-danger);
|
|
}
|
|
|
|
.suspension-icon {
|
|
font-size: 64px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.suspension-title {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: var(--bp-danger);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.suspension-message {
|
|
font-size: 15px;
|
|
color: var(--bp-text-muted);
|
|
line-height: 1.6;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.suspension-reason {
|
|
background: rgba(239, 68, 68, 0.1);
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.suspension-reason-label {
|
|
font-size: 12px;
|
|
color: var(--bp-text-muted);
|
|
margin-bottom: 8px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.suspension-reason-text {
|
|
font-size: 14px;
|
|
color: var(--bp-text);
|
|
}
|
|
|
|
.suspension-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.suspension-btn {
|
|
padding: 14px 24px;
|
|
border-radius: 10px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
border: none;
|
|
}
|
|
|
|
.suspension-btn-primary {
|
|
background: var(--bp-btn-primary-bg);
|
|
color: white;
|
|
}
|
|
|
|
.suspension-btn-primary:hover {
|
|
background: var(--bp-btn-primary-hover);
|
|
}
|
|
|
|
.suspension-btn-secondary {
|
|
background: transparent;
|
|
border: 1px solid var(--bp-border);
|
|
color: var(--bp-text);
|
|
}
|
|
|
|
.suspension-btn-secondary:hover {
|
|
border-color: var(--bp-primary);
|
|
color: var(--bp-primary);
|
|
}
|
|
|
|
.suspension-countdown {
|
|
font-size: 12px;
|
|
color: var(--bp-text-muted);
|
|
margin-top: 16px;
|
|
}
|
|
|
|
/* Light Mode Overrides */
|
|
[data-theme="light"] .suspension-content {
|
|
background: var(--bp-surface);
|
|
}
|
|
|
|
[data-theme="light"] .suspension-reason {
|
|
background: rgba(239, 68, 68, 0.05);
|
|
}
|