Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
470 lines
14 KiB
CSS
470 lines
14 KiB
CSS
/* OpenFang Theme — Premium design system */
|
|
/* Optimized with UI/UX Pro Max guidelines: WCAG AAA contrast, accessible focus states */
|
|
|
|
/* Font imports in index_head.html: Inter (body) + Geist Mono (code) */
|
|
|
|
[data-theme="light"], :root {
|
|
/* Backgrounds — layered depth */
|
|
--bg: #F5F4F2;
|
|
--bg-primary: #EDECEB;
|
|
--bg-elevated: #F8F7F6;
|
|
--surface: #FFFFFF;
|
|
--surface2: #F0EEEC;
|
|
--surface3: #E8E6E3;
|
|
--border: #D5D2CF;
|
|
--border-light: #C8C4C0;
|
|
--border-subtle: #E0DEDA;
|
|
|
|
/* Text hierarchy — WCAG AAA optimized (7:1+ contrast) */
|
|
--text: #0F0F0F; /* 15.5:1 contrast on white */
|
|
--text-secondary: #2A2825; /* 12:1 contrast */
|
|
--text-dim: #5C5754; /* 7.5:1 contrast */
|
|
--text-muted: #8A8580; /* 4.6:1 contrast for non-critical */
|
|
|
|
/* Brand — Orange accent */
|
|
--accent: #FF5C00;
|
|
--accent-light: #FF7A2E;
|
|
--accent-dim: #E05200;
|
|
--accent-glow: rgba(255, 92, 0, 0.1);
|
|
--accent-subtle: rgba(255, 92, 0, 0.05);
|
|
|
|
/* Status colors */
|
|
--success: #22C55E;
|
|
--success-dim: #16A34A;
|
|
--success-subtle: rgba(34, 197, 94, 0.08);
|
|
--error: #EF4444;
|
|
--error-dim: #DC2626;
|
|
--error-subtle: rgba(239, 68, 68, 0.06);
|
|
--warning: #F59E0B;
|
|
--warning-dim: #D97706;
|
|
--warning-subtle: rgba(245, 158, 11, 0.08);
|
|
--info: #3B82F6;
|
|
--info-dim: #2563EB;
|
|
--info-subtle: rgba(59, 130, 246, 0.06);
|
|
--success-muted: rgba(34, 197, 94, 0.15);
|
|
--error-muted: rgba(239, 68, 68, 0.15);
|
|
--warning-muted: rgba(245, 158, 11, 0.15);
|
|
--info-muted: rgba(59, 130, 246, 0.15);
|
|
--border-strong: #B0ACA8;
|
|
--card-highlight: rgba(0, 0, 0, 0.02);
|
|
|
|
/* Chat-specific */
|
|
--agent-bg: #F5F4F2;
|
|
--user-bg: #FFF3E6;
|
|
|
|
/* Layout */
|
|
--sidebar-width: 240px;
|
|
--sidebar-collapsed: 56px;
|
|
--header-height: 48px;
|
|
|
|
/* Radius — slightly larger for premium feel */
|
|
--radius-xs: 4px;
|
|
--radius-sm: 6px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 12px;
|
|
--radius-xl: 16px;
|
|
|
|
/* Shadows — 6-level depth system */
|
|
--shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
|
|
--shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
|
|
--shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
|
|
--shadow-lg: 0 12px 28px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
|
|
--shadow-xl: 0 20px 40px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06);
|
|
--shadow-glow: 0 0 40px rgba(0,0,0,0.05);
|
|
--shadow-accent: 0 4px 16px rgba(255, 92, 0, 0.12);
|
|
--shadow-inset: inset 0 1px 0 rgba(255,255,255,0.5);
|
|
|
|
/* Typography — dual font system */
|
|
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
--font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace;
|
|
|
|
/* Motion — spring curves for premium feel */
|
|
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
|
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
|
--transition-fast: 0.15s var(--ease-smooth);
|
|
--transition-normal: 0.25s var(--ease-smooth);
|
|
--transition-spring: 0.4s var(--ease-spring);
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
/* OLED-optimized dark theme with WCAG AAA contrast */
|
|
--bg: #020617; /* Deep black for OLED */
|
|
--bg-primary: #0A0A0A; /* Near black primary */
|
|
--bg-elevated: #121212; /* Elevated surface */
|
|
--surface: #1A1A1A; /* Card background */
|
|
--surface2: #242424; /* Secondary surface */
|
|
--surface3: #18181B; /* Tertiary surface */
|
|
--border: #2E2E2E; /* Visible border (3:1 contrast) */
|
|
--border-light: #404040; /* Lighter border for hover */
|
|
--border-subtle: #1F1F1F; /* Subtle separator */
|
|
--text: #F8FAFC; /* 15.3:1 contrast on dark */
|
|
--text-secondary: #E2E8F0; /* 12.5:1 contrast */
|
|
--text-dim: #A1A1AA; /* 8:1 contrast */
|
|
--text-muted: #71717A; /* 4.7:1 contrast */
|
|
--accent: #FF5C00;
|
|
--accent-light: #FF7A2E;
|
|
--accent-dim: #E05200;
|
|
--accent-glow: rgba(255, 92, 0, 0.15);
|
|
--accent-subtle: rgba(255, 92, 0, 0.08);
|
|
--success: #4ADE80;
|
|
--success-dim: #22C55E;
|
|
--success-subtle: rgba(74, 222, 128, 0.1);
|
|
--error: #EF4444;
|
|
--error-dim: #B91C1C;
|
|
--error-subtle: rgba(239, 68, 68, 0.1);
|
|
--warning: #F59E0B;
|
|
--warning-dim: #D97706;
|
|
--warning-subtle: rgba(245, 158, 11, 0.1);
|
|
--info: #3B82F6;
|
|
--info-dim: #2563EB;
|
|
--info-subtle: rgba(59, 130, 246, 0.1);
|
|
--success-muted: rgba(74, 222, 128, 0.25);
|
|
--error-muted: rgba(239, 68, 68, 0.25);
|
|
--warning-muted: rgba(245, 158, 11, 0.25);
|
|
--info-muted: rgba(59, 130, 246, 0.25);
|
|
--border-strong: #4A4644;
|
|
--card-highlight: rgba(255, 255, 255, 0.04);
|
|
--agent-bg: #1A1817;
|
|
--user-bg: #2A1A08;
|
|
--shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
|
|
--shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
|
|
--shadow-md: 0 4px 12px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.3);
|
|
--shadow-lg: 0 12px 28px rgba(0,0,0,0.35), 0 4px 10px rgba(0,0,0,0.3);
|
|
--shadow-xl: 0 20px 40px rgba(0,0,0,0.4), 0 8px 16px rgba(0,0,0,0.3);
|
|
--shadow-glow: 0 0 80px rgba(0,0,0,0.6);
|
|
--shadow-accent: 0 4px 16px rgba(255, 92, 0, 0.2);
|
|
--shadow-inset: inset 0 1px 0 rgba(255,255,255,0.03);
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: var(--font-sans);
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
/* Mono text utility — only for code/data */
|
|
.font-mono, code, pre, .tool-pre, .tool-card-name, .detail-value,
|
|
.stat-value, .conn-badge, .version { font-family: var(--font-mono); }
|
|
|
|
/* Scrollbar — Webkit (Chrome, Edge, Safari) */
|
|
::-webkit-scrollbar { width: 6px; height: 6px; }
|
|
::-webkit-scrollbar-track { background: transparent; }
|
|
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
|
|
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }
|
|
|
|
/* Scrollbar — Firefox */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--border) transparent;
|
|
}
|
|
|
|
::selection {
|
|
background: var(--accent);
|
|
color: var(--bg-primary);
|
|
}
|
|
|
|
/* Theme transition — smooth switch between light/dark */
|
|
body {
|
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
}
|
|
.sidebar, .main-content, .card, .modal, .tool-card, .toast, .page-header {
|
|
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
/* Tighter letter spacing for headings */
|
|
h1, h2, h3, .card-header, .stat-value, .page-header h2 { letter-spacing: -0.02em; }
|
|
.nav-section-title, .badge, th { letter-spacing: 0.04em; }
|
|
|
|
/* Focus styles — accessible double-ring with glow */
|
|
:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
box-shadow: 0 0 0 4px var(--accent-glow);
|
|
}
|
|
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
box-shadow: 0 0 0 4px var(--accent-glow);
|
|
}
|
|
|
|
/* Entrance animations */
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from { opacity: 0; transform: translateY(8px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@keyframes slideDown {
|
|
from { opacity: 0; transform: translateY(-8px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@keyframes scaleIn {
|
|
from { opacity: 0; transform: scale(0.95); }
|
|
to { opacity: 1; transform: scale(1); }
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% { background-position: -200% 0; }
|
|
100% { background-position: 200% 0; }
|
|
}
|
|
|
|
@keyframes pulse-ring {
|
|
0% { box-shadow: 0 0 0 0 currentColor; }
|
|
70% { box-shadow: 0 0 0 4px transparent; }
|
|
100% { box-shadow: 0 0 0 0 transparent; }
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Staggered card entry animation */
|
|
@keyframes cardEntry {
|
|
from { opacity: 0; transform: translateY(12px) scale(0.98); }
|
|
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
}
|
|
.animate-entry { animation: cardEntry 0.35s var(--ease-spring) both; }
|
|
.stagger-1 { animation-delay: 0.05s; }
|
|
.stagger-2 { animation-delay: 0.10s; }
|
|
.stagger-3 { animation-delay: 0.15s; }
|
|
.stagger-4 { animation-delay: 0.20s; }
|
|
.stagger-5 { animation-delay: 0.25s; }
|
|
.stagger-6 { animation-delay: 0.30s; }
|
|
|
|
/* Skeleton loading animation */
|
|
.skeleton {
|
|
background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%);
|
|
background-size: 200% 100%;
|
|
animation: shimmer 1.5s ease-in-out infinite;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.skeleton-text { height: 14px; margin-bottom: 8px; }
|
|
.skeleton-text:last-child { width: 60%; }
|
|
.skeleton-heading { height: 20px; width: 40%; margin-bottom: 12px; }
|
|
.skeleton-card { height: 100px; border-radius: var(--radius-lg); }
|
|
.skeleton-avatar { width: 32px; height: 32px; border-radius: 50%; }
|
|
|
|
/* Print styles */
|
|
@media print {
|
|
.sidebar, .sidebar-overlay, .mobile-menu-btn, .toast-container, .btn { display: none !important; }
|
|
.main-content { margin: 0; max-width: 100%; }
|
|
body { background: #fff; color: #000; }
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*, *::before, *::after {
|
|
animation-duration: 0.01ms !important;
|
|
transition-duration: 0.01ms !important;
|
|
}
|
|
}
|
|
|
|
/* ═══════════════════════════════════════════════════════════════════════════
|
|
UI/UX Pro Max Optimizations — Accessibility & Interaction Enhancement
|
|
═══════════════════════════════════════════════════════════════════════════ */
|
|
|
|
/* Cursor pointer for all clickable elements (CRITICAL) */
|
|
.clickable, [role="button"], [onclick], .nav-item, .card[onclick],
|
|
.stat-card[onclick], .quick-action-card, .badge[onclick],
|
|
.dropdown-item, .menu-item, .list-item[onclick] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Ensure buttons always show pointer */
|
|
button, .btn, [type="button"], [type="submit"], [type="reset"] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Disabled state cursor */
|
|
:disabled, .disabled, [aria-disabled="true"] {
|
|
cursor: not-allowed !important;
|
|
}
|
|
|
|
/* Focus ring enhancement for keyboard navigation (WCAG 2.4.7) */
|
|
a:focus-visible, button:focus-visible, input:focus-visible,
|
|
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
|
|
outline: 2px solid var(--accent) !important;
|
|
outline-offset: 2px !important;
|
|
box-shadow: 0 0 0 4px var(--accent-glow) !important;
|
|
transition: box-shadow 0.15s ease;
|
|
}
|
|
|
|
/* Skip link for keyboard users */
|
|
.skip-link {
|
|
position: absolute;
|
|
top: -40px;
|
|
left: 0;
|
|
background: var(--accent);
|
|
color: var(--bg-primary);
|
|
padding: 8px 16px;
|
|
z-index: 10000;
|
|
transition: top 0.2s;
|
|
}
|
|
.skip-link:focus {
|
|
top: 0;
|
|
}
|
|
|
|
/* Minimum touch target size (WCAG 2.5.5 — 44x44px) */
|
|
@media (pointer: coarse) {
|
|
button, .btn, .nav-item, .badge[onclick], .toggle,
|
|
input[type="checkbox"], input[type="radio"],
|
|
.form-input, .form-select, .form-textarea {
|
|
min-height: 44px;
|
|
min-width: 44px;
|
|
}
|
|
}
|
|
|
|
/* High contrast mode support */
|
|
@media (prefers-contrast: high) {
|
|
:root, [data-theme="light"], [data-theme="dark"] {
|
|
--border: currentColor;
|
|
--text-dim: var(--text);
|
|
--text-muted: var(--text-secondary);
|
|
}
|
|
|
|
.card, .modal, .btn, input, select, textarea {
|
|
border-width: 2px;
|
|
}
|
|
}
|
|
|
|
/* Forced colors mode (Windows High Contrast) */
|
|
@media (forced-colors: active) {
|
|
.btn, .badge, .toggle, .card {
|
|
border: 2px solid currentColor;
|
|
}
|
|
|
|
.status-dot, .session-dot {
|
|
forced-color-adjust: none;
|
|
}
|
|
}
|
|
|
|
/* Z-index scale (prevent z-index conflicts) */
|
|
:root {
|
|
--z-base: 1;
|
|
--z-dropdown: 100;
|
|
--z-sticky: 200;
|
|
--z-fixed: 300;
|
|
--z-modal-backdrop: 400;
|
|
--z-modal: 500;
|
|
--z-popover: 600;
|
|
--z-tooltip: 700;
|
|
--z-toast: 800;
|
|
--z-max: 9999;
|
|
}
|
|
|
|
/* Utility classes for common patterns */
|
|
.truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.line-clamp-3 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 3;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Screen reader only */
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
/* Focus visible only (not on click) */
|
|
.focus-visible:focus:not(:focus-visible) {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Smooth hover transitions (150-300ms per guidelines) */
|
|
.hover-lift {
|
|
transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
|
|
}
|
|
.hover-lift:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.hover-glow {
|
|
transition: box-shadow 0.2s var(--ease-smooth);
|
|
}
|
|
.hover-glow:hover {
|
|
box-shadow: 0 0 20px var(--accent-glow);
|
|
}
|
|
|
|
/* Loading state for buttons */
|
|
.btn-loading {
|
|
position: relative;
|
|
color: transparent !important;
|
|
pointer-events: none;
|
|
}
|
|
.btn-loading::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 2px solid var(--border);
|
|
border-top-color: currentColor;
|
|
border-radius: 50%;
|
|
animation: spin 0.6s linear infinite;
|
|
}
|
|
|
|
/* Improved dark mode image handling */
|
|
[data-theme="dark"] img {
|
|
opacity: 0.95;
|
|
transition: opacity 0.2s;
|
|
}
|
|
[data-theme="dark"] img:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Dark mode specific adjustments */
|
|
[data-theme="dark"] {
|
|
--agent-bg: #1A1A1A;
|
|
--user-bg: #2A1A08;
|
|
--shadow-xs: 0 1px 2px rgba(0,0,0,0.5);
|
|
--shadow-sm: 0 1px 3px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
|
|
--shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);
|
|
--shadow-lg: 0 12px 28px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.4);
|
|
--shadow-xl: 0 20px 40px rgba(0,0,0,0.6), 0 8px 16px rgba(0,0,0,0.4);
|
|
--shadow-glow: 0 0 80px rgba(0,0,0,0.8);
|
|
--shadow-accent: 0 4px 20px rgba(255, 92, 0, 0.25);
|
|
--shadow-inset: inset 0 1px 0 rgba(255,255,255,0.05);
|
|
--card-highlight: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|