From 37c750750719f0c736977c08cc86c6349000f428 Mon Sep 17 00:00:00 2001 From: DearTanker <1122669+DearTanker@users.noreply.github.com> Date: Mon, 30 Jun 2025 13:04:47 +0800 Subject: [PATCH 1/3] Style: Make all code editors apply Tailwind CSS font-mono style. --- apps/dokploy/styles/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/dokploy/styles/globals.css b/apps/dokploy/styles/globals.css index 74a1d2764..adb5223b6 100644 --- a/apps/dokploy/styles/globals.css +++ b/apps/dokploy/styles/globals.css @@ -242,3 +242,7 @@ background-color: var(--terminal-paste) !important; color: currentColor !important; } + +.cm-content, .cm-lineWrapping { + @apply font-mono; +} \ No newline at end of file From 1f4ce2daf355ff7e381393976674fa51471f1ab3 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 05:13:57 +0000 Subject: [PATCH 2/3] [autofix.ci] apply automated fixes --- apps/dokploy/styles/globals.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/dokploy/styles/globals.css b/apps/dokploy/styles/globals.css index adb5223b6..59d101654 100644 --- a/apps/dokploy/styles/globals.css +++ b/apps/dokploy/styles/globals.css @@ -243,6 +243,7 @@ color: currentColor !important; } -.cm-content, .cm-lineWrapping { - @apply font-mono; -} \ No newline at end of file +.cm-content, +.cm-lineWrapping { + @apply font-mono; +} From 24ea8b7fbd0fbfc12d8cd4b004a55c6f37c35e03 Mon Sep 17 00:00:00 2001 From: DearTanker <1122669+DearTanker@users.noreply.github.com> Date: Thu, 3 Jul 2025 10:39:58 +0800 Subject: [PATCH 3/3] Style: Unspecify the popup list width to make the name appear in full --- apps/dokploy/components/ui/popover.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/components/ui/popover.tsx b/apps/dokploy/components/ui/popover.tsx index b4dac1f3e..903cd059c 100644 --- a/apps/dokploy/components/ui/popover.tsx +++ b/apps/dokploy/components/ui/popover.tsx @@ -17,7 +17,7 @@ const PopoverContent = React.forwardRef< align={align} sideOffset={sideOffset} className={cn( - "z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", + "z-50 w-full rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", className, )} {...props}