diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index a10b48fef4..90bd57c0e2 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -2045,5 +2045,6 @@ "recently_added":"Recently added", "no_members_found": "No members found", "event_setup_length_error":"Event Setup: The duration must be at least 1 minute.", + "availability_schedules":"Availability Schedules", "ADD_NEW_STRINGS_ABOVE_THIS_LINE_TO_PREVENT_MERGE_CONFLICTS": "↑↑↑↑↑↑↑↑↑↑↑↑↑ Add your new strings above here ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑" } diff --git a/apps/web/styles/globals.css b/apps/web/styles/globals.css index 4e09978ccd..f00e4bfe3d 100644 --- a/apps/web/styles/globals.css +++ b/apps/web/styles/globals.css @@ -93,6 +93,12 @@ --cal-brand-text: black; } +@layer base { + * { + @apply border-default + } +} + ::-moz-selection { color: var(--cal-brand-text); background: var(--cal-brand); diff --git a/packages/features/timezone-buddy/components/AvailabilitySliderTable.tsx b/packages/features/timezone-buddy/components/AvailabilitySliderTable.tsx index d1f8e9a77a..2471548564 100644 --- a/packages/features/timezone-buddy/components/AvailabilitySliderTable.tsx +++ b/packages/features/timezone-buddy/components/AvailabilitySliderTable.tsx @@ -103,7 +103,7 @@ export function AvailabilitySliderTable() { .padStart(2, "0")}:${minutes.toString().padStart(2, "0")}`; return ( -
+
{time} GMT {offsetFormatted}
diff --git a/packages/features/users/components/UserTable/EditSheet/EditUserSheet.tsx b/packages/features/users/components/UserTable/EditSheet/EditUserSheet.tsx index 898c884008..c0ab958b19 100644 --- a/packages/features/users/components/UserTable/EditSheet/EditUserSheet.tsx +++ b/packages/features/users/components/UserTable/EditSheet/EditUserSheet.tsx @@ -5,7 +5,7 @@ import { useOrgBranding } from "@calcom/ee/organizations/context/provider"; import { WEBAPP_URL } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc/react"; -import { Sheet, SheetContent, SheetFooter, Avatar, Skeleton, Loader } from "@calcom/ui"; +import { Sheet, SheetContent, SheetFooter, Avatar, Skeleton, Loader, Label } from "@calcom/ui"; import type { State, Action } from "../UserListTable"; import { DisplayInfo } from "./DisplayInfo"; @@ -69,14 +69,23 @@ export function EditUserSheet({ state, dispatch }: { state: State; dispatch: Dis /> - +
+ +
+ {schedulesNames + ? schedulesNames.map((scheduleName) => ( + + {scheduleName} + + )) + : t("user_has_no_schedules")} +
+
+ ( )