- Workspace switcher in sidebar header (dropdown with team list) - NavMain component with label and activePattern support - User menu in sidebar footer via NavUser component - UserMenuContent with theme switcher submenu (light/dark/system) - UserInfo component with avatar fallback and customizable classes - AppSidebarLayout using SidebarProvider/SidebarInset directly - AppSidebarHeader with right slot for header actions - AppLayout with fullWidth and header-right slot support - Remove workspace/user/theme/language from header dropdown - 702 tests passing, build passing
252 lines
No EOL
7.4 KiB
CSS
252 lines
No EOL
7.4 KiB
CSS
@import 'tailwindcss';
|
|
@import 'tw-animate-css';
|
|
@import 'vue-sonner/style.css';
|
|
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
|
@source '../../storage/framework/views/*.php';
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
:root {
|
|
--background: #fafafa;
|
|
--foreground: #0a0a0a;
|
|
--card: #ffffff;
|
|
--card-foreground: #0a0a0a;
|
|
--popover: #ffffff;
|
|
--popover-foreground: #0a0a0a;
|
|
--primary: #171717;
|
|
--primary-foreground: #fafafa;
|
|
--secondary: #e5e5e5;
|
|
--secondary-foreground: #171717;
|
|
--muted: #f5f5f5;
|
|
--muted-foreground: #737373;
|
|
--accent: #e5e5e5;
|
|
--accent-foreground: #171717;
|
|
--destructive: #dc2626;
|
|
--destructive-foreground: #fafafa;
|
|
--success: #16a34a;
|
|
--error: #dc2626;
|
|
--warning: #d97706;
|
|
--info: #2563eb;
|
|
--border: #e5e5e5;
|
|
--input: #d4d4d4;
|
|
--ring: #525252;
|
|
--chart-1: #1f3fad;
|
|
--chart-2: #1a4eda;
|
|
--chart-3: #2563ef;
|
|
--chart-4: #3a81f6;
|
|
--chart-5: #91c5ff;
|
|
--sidebar: #f5f5f5;
|
|
--sidebar-foreground: #0a0a0a;
|
|
--sidebar-primary: #1447e6;
|
|
--sidebar-primary-foreground: #fafafa;
|
|
--sidebar-accent: #e5e5e5;
|
|
--sidebar-accent-foreground: #171717;
|
|
--sidebar-border: #e5e5e5;
|
|
--sidebar-ring: #a3a3a3;
|
|
--font-sans:
|
|
'Space Grotesk', ui-sans-serif, system-ui, -apple-system,
|
|
BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
|
--font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
--font-mono:
|
|
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
|
'Liberation Mono', 'Courier New', monospace;
|
|
--radius: 0.725rem;
|
|
--shadow-x: 0;
|
|
--shadow-y: 1px;
|
|
--shadow-blur: 2.5px;
|
|
--shadow-spread: 0px;
|
|
--shadow-opacity: 0.04;
|
|
--shadow-color: oklch(0.3065 0.0243 243.82);
|
|
--shadow-2xs: 0 1px 2.5px 0px hsl(0 0% 0% / 0.02);
|
|
--shadow-xs: 0 1px 2.5px 0px hsl(0 0% 0% / 0.02);
|
|
--shadow-sm:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 1px 2px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 1px 2px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-md:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 2px 4px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-lg:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 4px 6px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-xl:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 8px 10px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-2xl: 0 1px 2.5px 0px hsl(0 0% 0% / 0.1);
|
|
--tracking-normal: 0em;
|
|
--spacing: 0.25rem;
|
|
}
|
|
|
|
.dark {
|
|
--background: #0a0a0a;
|
|
--foreground: #fafafa;
|
|
--card: #171717;
|
|
--card-foreground: #fafafa;
|
|
--popover: #262626;
|
|
--popover-foreground: #fafafa;
|
|
--primary: #e5e5e5;
|
|
--primary-foreground: #171717;
|
|
--secondary: #262626;
|
|
--secondary-foreground: #fafafa;
|
|
--muted: #262626;
|
|
--muted-foreground: #a1a1a1;
|
|
--accent: #404040;
|
|
--accent-foreground: #fafafa;
|
|
--destructive: #ff6467;
|
|
--destructive-foreground: #fafafa;
|
|
--success: #16a34a;
|
|
--error: #dc2626;
|
|
--warning: #d97706;
|
|
--info: #2563eb;
|
|
--border: #333333;
|
|
--input: #343434;
|
|
--ring: #737373;
|
|
--chart-1: #91c5ff;
|
|
--chart-2: #3a81f6;
|
|
--chart-3: #2563ef;
|
|
--chart-4: #1a4eda;
|
|
--chart-5: #1f3fad;
|
|
--sidebar: #171717;
|
|
--sidebar-foreground: #fafafa;
|
|
--sidebar-primary: #1447e6;
|
|
--sidebar-primary-foreground: #fafafa;
|
|
--sidebar-accent: #262626;
|
|
--sidebar-accent-foreground: #fafafa;
|
|
--sidebar-border: #282828;
|
|
--sidebar-ring: #525252;
|
|
--font-sans:
|
|
'Space Grotesk', ui-sans-serif, system-ui, -apple-system,
|
|
BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
|
--font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
--font-mono:
|
|
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
|
'Liberation Mono', 'Courier New', monospace;
|
|
--radius: 0.725rem;
|
|
--shadow-x: 0;
|
|
--shadow-y: 1px;
|
|
--shadow-blur: 2.5px;
|
|
--shadow-spread: 0px;
|
|
--shadow-opacity: 0.04;
|
|
--shadow-color: oklch(0 0 0);
|
|
--shadow-2xs: 0 1px 2.5px 0px hsl(0 0% 0% / 0.02);
|
|
--shadow-xs: 0 1px 2.5px 0px hsl(0 0% 0% / 0.02);
|
|
--shadow-sm:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 1px 2px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 1px 2px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-md:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 2px 4px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-lg:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 4px 6px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-xl:
|
|
0 1px 2.5px 0px hsl(0 0% 0% / 0.04), 0 8px 10px -1px hsl(0 0% 0% / 0.04);
|
|
--shadow-2xl: 0 1px 2.5px 0px hsl(0 0% 0% / 0.1);
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-card: var(--card);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-destructive: var(--destructive);
|
|
--color-destructive-foreground: var(--destructive-foreground);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-5: var(--chart-5);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
|
|
--font-sans: var(--font-sans);
|
|
--font-mono: var(--font-mono);
|
|
--font-serif: var(--font-serif);
|
|
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
|
|
--shadow-2xs: var(--shadow-2xs);
|
|
--shadow-xs: var(--shadow-xs);
|
|
--shadow-sm: var(--shadow-sm);
|
|
--shadow: var(--shadow);
|
|
--shadow-md: var(--shadow-md);
|
|
--shadow-lg: var(--shadow-lg);
|
|
--shadow-xl: var(--shadow-xl);
|
|
--shadow-2xl: var(--shadow-2xl);
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
.workflow-dots {
|
|
background-image: radial-gradient(circle,
|
|
var(--border) 1px,
|
|
transparent 1px);
|
|
background-size: 20px 20px;
|
|
cursor: grab;
|
|
}
|
|
|
|
.workflow-dots:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
/* Animated dashed connector lines */
|
|
.workflow-line-v {
|
|
width: 2px;
|
|
background: repeating-linear-gradient(to bottom,
|
|
var(--border) 0,
|
|
var(--border) 4px,
|
|
transparent 4px,
|
|
transparent 8px);
|
|
animation: march-v 0.5s linear infinite;
|
|
}
|
|
|
|
.workflow-line-h {
|
|
height: 2px;
|
|
background: repeating-linear-gradient(to right,
|
|
var(--border) 0,
|
|
var(--border) 4px,
|
|
transparent 4px,
|
|
transparent 8px);
|
|
animation: march-h 0.5s linear infinite;
|
|
}
|
|
|
|
@keyframes march-v {
|
|
to {
|
|
background-position-y: 8px;
|
|
}
|
|
}
|
|
|
|
@keyframes march-h {
|
|
to {
|
|
background-position-x: 8px;
|
|
}
|
|
} |