Refactor global styles and enhance MITM functionality

- Updated global CSS to implement a new brand color palette and improve light/dark theme consistency.
- Enhanced the MitmServerCard component to provide clearer user feedback regarding admin privileges.
- Filtered LLM combos in the CombosPage to ensure only relevant data is displayed.
- Improved APIPageClient layout for better usability and visual consistency.
- Added functionality to save and load DNS tool states in the MITM manager.
- Updated OAuth configuration URLs for Qwen to reflect the new endpoint structure.
- Refined tunnel management logic to improve reliability and user experience.
This commit is contained in:
decolua
2026-05-03 18:00:35 +07:00
parent 1686adc704
commit 6cdf40b44e
40 changed files with 1029 additions and 762 deletions

View File

@@ -14,7 +14,7 @@ export function Spinner({ size = "md", className }) {
return (
<span
className={cn(
"material-symbols-outlined animate-spin text-primary",
"material-symbols-outlined animate-spin text-brand-500",
sizes[size],
className
)}
@@ -39,7 +39,7 @@ export function Skeleton({ className, ...props }) {
return (
<div
className={cn(
"animate-pulse rounded-lg bg-border",
"animate-pulse rounded-[10px] bg-surface-2",
className
)}
{...props}
@@ -50,10 +50,10 @@ export function Skeleton({ className, ...props }) {
// Card skeleton
export function CardSkeleton() {
return (
<div className="p-6 rounded-xl border border-border bg-surface">
<div className="p-6 rounded-[14px] border border-border-subtle bg-surface shadow-[var(--shadow-soft)]">
<div className="flex items-center justify-between mb-4">
<Skeleton className="h-4 w-24" />
<Skeleton className="size-10 rounded-lg" />
<Skeleton className="size-10 rounded-[10px]" />
</div>
<Skeleton className="h-8 w-16 mb-2" />
<Skeleton className="h-3 w-20" />
@@ -61,7 +61,6 @@ export function CardSkeleton() {
);
}
// Default export
export default function Loading({ type = "spinner", ...props }) {
switch (type) {
case "page":
@@ -74,4 +73,3 @@ export default function Loading({ type = "spinner", ...props }) {
return <Spinner {...props} />;
}
}