Redesign UI with Industrial Cyber Console theme
This commit introduces a complete visual overhaul of the AutoGLM Dashboard with a distinctive "Industrial Cyber Console" aesthetic that transforms the interface into a futuristic control center. Design Concept: - Industrial control panels + Cyberpunk + Retro CRT terminal aesthetics - Dark background with neon status indicators (green/amber/red) - Monospace code fonts + Sci-fi display typography - Grid lines, scanlines, glowing borders, tech effects - CRT effects, blinking cursors, data flow animations New Files: - dashboard/static/css/cyber-core.css - Core theme variables, global effects, and utility classes (364 lines) Updated Files: - dashboard/static/css/dashboard.css - Main dashboard styles (577 lines) • Animated header with blinking prompt cursor • Device cards with neon glow on hover • Task items with status indicators and data flow effects • Custom button styles with light sweep animation • Toast notifications with colored left borders - dashboard/static/css/video-learning.css - Video learning page styles (649 lines) • Config section with tech-inspired form inputs • Custom checkbox with neon glow effect • Progress bars with shimmer animation • Session cards with holographic border effects • Video placeholders with "NO_SIGNAL" indicator - dashboard/static/css/sessions.css - Sessions list page styles (589 lines) • Session cards with status indicator dots • Progress bars with striped overlays • Filter buttons with active state glow • Empty state with pulsing circle animation • Action buttons with type-specific colors Key Visual Elements: - Font: Orbitron (display) + JetBrains Mono (code) - Colors: Neon green (#00ff9f), Amber (#ffb800), Red (#ff4757) - Backgrounds: Deep navy (#0a0e27) with grid overlay - Effects: CRT scanlines, data flow, pulse animations, glow shadows - Decorations: Corner accents, status indicators, tech borders Technical Details: - CSS custom properties for consistent theming - @import for core styles across all pages - Pseudo-elements for decorative effects (::before, ::after) - Keyframe animations: scanline, pulse, shimmer, blink, dataFlow - Backdrop filters for glass effects - Box-shadow for neon glow effects Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,208 +1,423 @@
|
||||
/**
|
||||
* Video Learning Sessions Page Styles
|
||||
* Video Learning Sessions Page - Industrial Cyber Console
|
||||
* 任务列表页面样式
|
||||
*/
|
||||
|
||||
/* Sessions Grid */
|
||||
.sessions-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
||||
gap: 20px;
|
||||
padding: 20px;
|
||||
/* 导入核心样式 */
|
||||
@import url('./cyber-core.css');
|
||||
|
||||
/* ==================== 页面容器 ==================== */
|
||||
.sessions-page {
|
||||
min-height: 100vh;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
/* Session Card */
|
||||
/* ==================== 页面标题 ==================== */
|
||||
.page-header {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.page-header h1 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
color: var(--cyber-green);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.2em;
|
||||
text-shadow: 0 0 30px var(--cyber-green-dim);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.page-header h1::before {
|
||||
content: '>';
|
||||
margin-right: 0.75rem;
|
||||
animation: blink 1s step-end infinite;
|
||||
}
|
||||
|
||||
.page-header p {
|
||||
color: var(--cyber-text-secondary);
|
||||
font-family: var(--cyber-font-mono);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.page-header p::before {
|
||||
content: '// ';
|
||||
color: var(--cyber-green);
|
||||
}
|
||||
|
||||
/* ==================== Sessions Grid ==================== */
|
||||
.sessions-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
|
||||
gap: 1.5rem;
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
/* ==================== Session Card ==================== */
|
||||
.session-card {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
background: linear-gradient(135deg, var(--cyber-bg-secondary) 0%, var(--cyber-bg-tertiary) 100%);
|
||||
border: 1px solid var(--cyber-border);
|
||||
padding: 1.5rem;
|
||||
position: relative;
|
||||
transition: var(--cyber-transition-normal);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.session-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 3px;
|
||||
background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
|
||||
opacity: 0;
|
||||
transition: var(--cyber-transition-normal);
|
||||
}
|
||||
|
||||
.session-card::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
right: 1rem;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: var(--cyber-text-muted);
|
||||
box-shadow: 0 0 10px currentColor;
|
||||
transition: var(--cyber-transition-normal);
|
||||
}
|
||||
|
||||
.session-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
border-color: var(--cyber-green);
|
||||
box-shadow: 0 0 30px var(--cyber-green-dim);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
|
||||
.session-card:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.session-card.completed {
|
||||
opacity: 0.8;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* Session Header */
|
||||
.session-card.completed::after {
|
||||
background: var(--cyber-text-muted);
|
||||
}
|
||||
|
||||
/* ==================== Session Header ==================== */
|
||||
.session-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 12px;
|
||||
margin-bottom: 1rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.session-platform {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
gap: 0.75rem;
|
||||
font-family: var(--cyber-font-display);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
color: var(--cyber-text-primary);
|
||||
}
|
||||
|
||||
.session-platform::before {
|
||||
content: '';
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
content: '◆';
|
||||
color: var(--cyber-green);
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
/* Session Status */
|
||||
/* ==================== Session Status ==================== */
|
||||
.session-status {
|
||||
padding: 4px 12px;
|
||||
border-radius: 12px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
padding: 0.3rem 0.75rem;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
font-family: var(--cyber-font-display);
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.session-status.status-active {
|
||||
background: #10b981;
|
||||
color: white;
|
||||
background: var(--cyber-green-dim);
|
||||
color: var(--cyber-green);
|
||||
border-color: var(--cyber-green);
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
.session-status.status-paused {
|
||||
background: #f59e0b;
|
||||
color: white;
|
||||
background: var(--cyber-amber-dim);
|
||||
color: var(--cyber-amber);
|
||||
border-color: var(--cyber-amber);
|
||||
}
|
||||
|
||||
.session-status.status-completed {
|
||||
background: #6b7280;
|
||||
color: white;
|
||||
background: rgba(148, 163, 184, 0.15);
|
||||
color: var(--cyber-text-secondary);
|
||||
border-color: var(--cyber-text-muted);
|
||||
}
|
||||
|
||||
/* Session ID */
|
||||
/* ==================== Session ID ==================== */
|
||||
.session-id {
|
||||
margin-bottom: 12px;
|
||||
padding: 8px 12px;
|
||||
background: #f3f4f6;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 1rem;
|
||||
padding: 0.75rem;
|
||||
background: var(--cyber-bg-primary);
|
||||
border: 1px solid var(--cyber-border);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.session-id::before {
|
||||
content: 'SESSION_ID';
|
||||
position: absolute;
|
||||
top: -0.5rem;
|
||||
left: 0.5rem;
|
||||
background: var(--cyber-bg-secondary);
|
||||
padding: 0 0.5rem;
|
||||
font-size: 0.55rem;
|
||||
font-family: var(--cyber-font-display);
|
||||
color: var(--cyber-text-muted);
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.session-id small {
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
color: #6b7280;
|
||||
margin-bottom: 4px;
|
||||
font-size: 0.65rem;
|
||||
color: var(--cyber-text-muted);
|
||||
margin-bottom: 0.35rem;
|
||||
font-family: var(--cyber-font-mono);
|
||||
}
|
||||
|
||||
.session-id small::before {
|
||||
content: '// ';
|
||||
color: var(--cyber-border-bright);
|
||||
}
|
||||
|
||||
.session-id code {
|
||||
font-family: 'Monaco', 'Consolas', monospace;
|
||||
font-size: 12px;
|
||||
color: #374151;
|
||||
font-family: var(--cyber-font-mono);
|
||||
font-size: 0.75rem;
|
||||
color: var(--cyber-green);
|
||||
word-break: break-all;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Session Progress */
|
||||
/* ==================== Session Progress ==================== */
|
||||
.session-progress {
|
||||
margin-bottom: 12px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.progress-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 14px;
|
||||
color: #374151;
|
||||
margin-bottom: 6px;
|
||||
font-size: 0.75rem;
|
||||
color: var(--cyber-text-secondary);
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--cyber-font-mono);
|
||||
}
|
||||
|
||||
.progress-info span:first-child::before {
|
||||
content: 'PROGRESS::';
|
||||
color: var(--cyber-green);
|
||||
margin-right: 0.35rem;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
height: 8px;
|
||||
background: #e5e7eb;
|
||||
border-radius: 4px;
|
||||
height: 6px;
|
||||
background: var(--cyber-bg-primary);
|
||||
border: 1px solid var(--cyber-border);
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress-bar::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: repeating-linear-gradient(
|
||||
90deg,
|
||||
transparent,
|
||||
transparent 2px,
|
||||
rgba(0, 0, 0, 0.3) 2px,
|
||||
rgba(0, 0, 0, 0.3) 4px
|
||||
);
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
|
||||
transition: width 0.3s ease;
|
||||
background: linear-gradient(90deg, var(--cyber-green), var(--cyber-blue));
|
||||
transition: width 0.5s ease;
|
||||
box-shadow: 0 0 10px var(--cyber-green-glow);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Session Duration */
|
||||
.progress-fill::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 15px;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
|
||||
animation: shimmer 2s infinite;
|
||||
}
|
||||
|
||||
/* ==================== Session Duration ==================== */
|
||||
.session-duration {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin-bottom: 16px;
|
||||
font-size: 14px;
|
||||
color: #6b7280;
|
||||
gap: 0.5rem;
|
||||
margin-bottom: 1.25rem;
|
||||
font-size: 0.75rem;
|
||||
color: var(--cyber-text-muted);
|
||||
font-family: var(--cyber-font-mono);
|
||||
}
|
||||
|
||||
/* Session Actions */
|
||||
.session-duration::before {
|
||||
content: '⏱';
|
||||
color: var(--cyber-green);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
/* ==================== Session Actions ==================== */
|
||||
.session-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
gap: 0.5rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.session-actions .btn {
|
||||
flex: 1;
|
||||
min-width: 80px;
|
||||
font-size: 0.7rem;
|
||||
padding: 0.5rem 0.75rem;
|
||||
}
|
||||
|
||||
/* Empty State */
|
||||
/* ==================== Empty State ==================== */
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 80px 20px;
|
||||
color: #6b7280;
|
||||
padding: 6rem 2rem;
|
||||
color: var(--cyber-text-muted);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.empty-state::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
border: 1px dashed var(--cyber-border);
|
||||
border-radius: 50%;
|
||||
animation: pulse 4s infinite;
|
||||
}
|
||||
|
||||
.empty-state svg {
|
||||
margin-bottom: 20px;
|
||||
color: #d1d5db;
|
||||
margin-bottom: 2rem;
|
||||
color: var(--cyber-text-muted);
|
||||
opacity: 0.3;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.empty-state h2 {
|
||||
font-size: 24px;
|
||||
margin-bottom: 8px;
|
||||
color: #374151;
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 0.75rem;
|
||||
color: var(--cyber-text-secondary);
|
||||
font-family: var(--cyber-font-display);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.empty-state p {
|
||||
font-size: 16px;
|
||||
margin-bottom: 24px;
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 2rem;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Button Styles */
|
||||
.empty-state .btn {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* ==================== Button Styles ==================== */
|
||||
.btn-sm {
|
||||
padding: 6px 12px;
|
||||
font-size: 13px;
|
||||
padding: 0.5rem 0.75rem;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
/* Toast Notifications */
|
||||
/* ==================== Toast Notifications ==================== */
|
||||
.toast-container {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
bottom: 2rem;
|
||||
right: 2rem;
|
||||
z-index: 1000;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.toast {
|
||||
padding: 12px 20px;
|
||||
border-radius: 6px;
|
||||
margin-bottom: 10px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
padding: 0.75rem 1rem;
|
||||
border: 1px solid;
|
||||
font-size: 0.8rem;
|
||||
font-family: var(--cyber-font-mono);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
animation: slideIn 0.3s ease;
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.toast::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 3px;
|
||||
}
|
||||
|
||||
.toast.info {
|
||||
background: #3b82f6;
|
||||
color: white;
|
||||
background: var(--cyber-blue-dim);
|
||||
color: var(--cyber-blue);
|
||||
border-color: var(--cyber-blue);
|
||||
}
|
||||
|
||||
.toast.info::before {
|
||||
background: var(--cyber-blue);
|
||||
}
|
||||
|
||||
.toast.success {
|
||||
background: rgba(16, 185, 129, 0.2);
|
||||
color: #10b981;
|
||||
border-color: #10b981;
|
||||
}
|
||||
|
||||
.toast.success::before {
|
||||
background: #10b981;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.toast.error {
|
||||
background: #ef4444;
|
||||
color: white;
|
||||
background: var(--cyber-red-dim);
|
||||
color: var(--cyber-red);
|
||||
border-color: var(--cyber-red);
|
||||
}
|
||||
|
||||
.toast.error::before {
|
||||
background: var(--cyber-red);
|
||||
}
|
||||
|
||||
@keyframes slideIn {
|
||||
@@ -216,12 +431,64 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
/* ==================== Loading State ==================== */
|
||||
.loading-state {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 4rem 2rem;
|
||||
color: var(--cyber-text-muted);
|
||||
}
|
||||
|
||||
.loading-state svg {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--cyber-green);
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
.loading-state p {
|
||||
font-family: var(--cyber-font-mono);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.loading-state p::before {
|
||||
content: 'LOADING...';
|
||||
color: var(--cyber-green);
|
||||
animation: blink 1s step-end infinite;
|
||||
}
|
||||
|
||||
/* ==================== 装饰性元素 ==================== */
|
||||
.sessions-grid::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background:
|
||||
radial-gradient(circle at 20% 30%, rgba(0, 255, 159, 0.03) 0%, transparent 50%),
|
||||
radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
/* ==================== Responsive Design ==================== */
|
||||
@media (max-width: 768px) {
|
||||
.sessions-page {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.sessions-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.page-header h1 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.session-actions {
|
||||
flex-direction: column;
|
||||
}
|
||||
@@ -229,4 +496,93 @@
|
||||
.session-actions .btn {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.toast-container {
|
||||
left: 1rem;
|
||||
right: 1rem;
|
||||
bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==================== 删除按钮特殊样式 ==================== */
|
||||
.btn-delete {
|
||||
background: var(--cyber-red-dim);
|
||||
color: var(--cyber-red);
|
||||
border-color: var(--cyber-red);
|
||||
}
|
||||
|
||||
.btn-delete:hover:not(:disabled) {
|
||||
background: var(--cyber-red);
|
||||
color: white;
|
||||
box-shadow: var(--cyber-glow-red);
|
||||
}
|
||||
|
||||
/* ==================== 详情按钮特殊样式 ==================== */
|
||||
.btn-details {
|
||||
background: var(--cyber-blue-dim);
|
||||
color: var(--cyber-blue);
|
||||
border-color: var(--cyber-blue);
|
||||
}
|
||||
|
||||
.btn-details:hover:not(:disabled) {
|
||||
background: var(--cyber-blue);
|
||||
color: var(--cyber-bg-primary);
|
||||
box-shadow: var(--cyber-glow-blue);
|
||||
}
|
||||
|
||||
/* ==================== 控制按钮 ==================== */
|
||||
.btn-control {
|
||||
background: var(--cyber-green-dim);
|
||||
color: var(--cyber-green);
|
||||
border-color: var(--cyber-green);
|
||||
}
|
||||
|
||||
.btn-control:hover:not(:disabled) {
|
||||
background: var(--cyber-green);
|
||||
color: var(--cyber-bg-primary);
|
||||
box-shadow: var(--cyber-glow-green);
|
||||
}
|
||||
|
||||
.btn-control.paused {
|
||||
background: var(--cyber-amber-dim);
|
||||
color: var(--cyber-amber);
|
||||
border-color: var(--cyber-amber);
|
||||
}
|
||||
|
||||
.btn-control.paused:hover:not(:disabled) {
|
||||
background: var(--cyber-amber);
|
||||
color: var(--cyber-bg-primary);
|
||||
}
|
||||
|
||||
/* ==================== 过滤器样式 ==================== */
|
||||
.sessions-filter {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.filter-btn {
|
||||
padding: 0.5rem 1rem;
|
||||
background: transparent;
|
||||
border: 1px solid var(--cyber-border);
|
||||
color: var(--cyber-text-secondary);
|
||||
font-family: var(--cyber-font-display);
|
||||
font-size: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
cursor: pointer;
|
||||
transition: var(--cyber-transition-fast);
|
||||
}
|
||||
|
||||
.filter-btn:hover {
|
||||
border-color: var(--cyber-green);
|
||||
color: var(--cyber-green);
|
||||
}
|
||||
|
||||
.filter-btn.active {
|
||||
background: var(--cyber-green-dim);
|
||||
border-color: var(--cyber-green);
|
||||
color: var(--cyber-green);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user