mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-09 04:35:25 +03:00
Finish sidebar
This commit is contained in:
parent
42b8e2cd17
commit
bb68be6a85
@ -8,12 +8,12 @@ import { isDesktop } from "react-device-detect";
|
|||||||
|
|
||||||
const variants = {
|
const variants = {
|
||||||
primary: {
|
primary: {
|
||||||
active: "font-bold text-primary-foreground bg-primary",
|
active: "font-bold text-primary-foreground bg-selected",
|
||||||
inactive: "text-muted-foreground bg-muted",
|
inactive: "text-secondary-foreground bg-secondary",
|
||||||
},
|
},
|
||||||
secondary: {
|
secondary: {
|
||||||
active: "font-bold text-primary",
|
active: "font-bold text-primary",
|
||||||
inactive: "text-muted-foreground",
|
inactive: "text-secondary-foreground",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -11,12 +11,12 @@ import { isDesktop } from "react-device-detect";
|
|||||||
|
|
||||||
const variants = {
|
const variants = {
|
||||||
primary: {
|
primary: {
|
||||||
active: "font-bold text-primary-foreground bg-primary",
|
active: "font-bold text-primary-foreground bg-selected",
|
||||||
inactive: "text-muted-foreground bg-muted",
|
inactive: "text-muted-foreground bg-secondary",
|
||||||
},
|
},
|
||||||
secondary: {
|
secondary: {
|
||||||
active: "font-bold text-primary",
|
active: "font-bold text-primary",
|
||||||
inactive: "text-muted-foreground",
|
inactive: "text-secondary-foreground",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -101,7 +101,7 @@ export default function LiveCameraView({ camera }: LiveCameraViewProps) {
|
|||||||
</Button>
|
</Button>
|
||||||
<TooltipProvider>
|
<TooltipProvider>
|
||||||
<div
|
<div
|
||||||
className={`flex flex-row items-center gap-1 mr-1 *:rounded-lg ${isMobile ? "landscape:flex-col" : ""}`}
|
className={`flex flex-row items-center gap-2 mr-1 *:rounded-lg ${isMobile ? "landscape:flex-col" : ""}`}
|
||||||
>
|
>
|
||||||
<CameraFeatureToggle
|
<CameraFeatureToggle
|
||||||
className="p-2 md:p-0"
|
className="p-2 md:p-0"
|
||||||
|
|||||||
@ -44,6 +44,7 @@ module.exports = {
|
|||||||
audio: "#ea580c",
|
audio: "#ea580c",
|
||||||
background: "hsl(var(--background))",
|
background: "hsl(var(--background))",
|
||||||
foreground: "hsl(var(--foreground))",
|
foreground: "hsl(var(--foreground))",
|
||||||
|
selected: "hsl(var(--selected))",
|
||||||
primary: {
|
primary: {
|
||||||
DEFAULT: "hsl(var(--primary))",
|
DEFAULT: "hsl(var(--primary))",
|
||||||
foreground: "hsl(var(--primary-foreground))",
|
foreground: "hsl(var(--primary-foreground))",
|
||||||
|
|||||||
@ -73,8 +73,8 @@
|
|||||||
--background-hsl: hsl(0 0 0%);
|
--background-hsl: hsl(0 0 0%);
|
||||||
--background: 0 0% 0%;
|
--background: 0 0% 0%;
|
||||||
|
|
||||||
--foreground: hsl(210 40% 98%);
|
--foreground: hsl(0, 0%, 100%);
|
||||||
--foreground: 210 40% 98%;
|
--foreground: 0, 0%, 100%;
|
||||||
|
|
||||||
--card: hsl(222.2 84% 4.9%);
|
--card: hsl(222.2 84% 4.9%);
|
||||||
--card: 222.2 84% 4.9%;
|
--card: 222.2 84% 4.9%;
|
||||||
@ -91,20 +91,20 @@
|
|||||||
--primary: hsl(0, 0%, 9%);
|
--primary: hsl(0, 0%, 9%);
|
||||||
--primary: 0, 0%, 9%;
|
--primary: 0, 0%, 9%;
|
||||||
|
|
||||||
--primary-foreground: hsl(222.2 47.4% 11.2%);
|
--primary-foreground: hsl(0, 0%, 100%);
|
||||||
--primary-foreground: 222.2 47.4% 11.2%;
|
--primary-foreground: 0, 0%, 100%;
|
||||||
|
|
||||||
--secondary: hsl(0, 0%, 15%);
|
--secondary: hsl(0, 0%, 15%);
|
||||||
--secondary: 0, 0%, 15%;
|
--secondary: 0, 0%, 15%;
|
||||||
|
|
||||||
--secondary-foreground: hsl(210 40% 98%);
|
--secondary-foreground: hsl(0, 0%, 83%);
|
||||||
--secondary-foreground: 210 40% 98%;
|
--secondary-foreground: 0, 0%, 83%;
|
||||||
|
|
||||||
--muted: hsl(217.2 32.6% 17.5%);
|
--muted: hsl(217.2 32.6% 17.5%);
|
||||||
--muted: 217.2 32.6% 17.5%;
|
--muted: 217.2 32.6% 17.5%;
|
||||||
|
|
||||||
--muted-foreground: hsl(215 20.2% 65.1%);
|
--muted-foreground: hsl(0, 0%, 32%);
|
||||||
--muted-foreground: 215 20.2% 65.1%;
|
--muted-foreground: 0, 0%, 32%;
|
||||||
|
|
||||||
--accent: hsl(217.2 32.6% 17.5%);
|
--accent: hsl(217.2 32.6% 17.5%);
|
||||||
--accent: 217.2 32.6% 17.5%;
|
--accent: 217.2 32.6% 17.5%;
|
||||||
@ -126,5 +126,8 @@
|
|||||||
|
|
||||||
--ring: hsl(212.7 26.8% 83.9%);
|
--ring: hsl(212.7 26.8% 83.9%);
|
||||||
--ring: 212.7 26.8% 83.9%;
|
--ring: 212.7 26.8% 83.9%;
|
||||||
|
|
||||||
|
--selected: hsl(228, 89%, 63%);
|
||||||
|
--selected: 228, 89%, 63%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user