[CAL-1410] Tokens update - Lightmode issues (#8598)

Co-authored-by: gitstart-calcom <gitstart@users.noreply.github.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
GitStart-Cal.com
2023-05-23 01:23:23 +00:00
committed by GitHub
co-authored by gitstart-calcom Peer Richelsen
parent 84efda07e9
commit a371cd6083
2 changed files with 9 additions and 5 deletions
@@ -40,9 +40,9 @@ const Switch = (
)}>
<PrimitiveSwitch.Root
className={cx(
props.checked || props.defaultChecked ? "bg-brand-default" : "bg-emphasis",
isChecked ? "bg-brand-default" : "bg-emphasis",
primitiveProps.disabled && "cursor-not-allowed",
"focus:ring-brand-default h-5 w-[34px] rounded-full shadow-none",
"focus:ring-brand-default h-5 w-[34px] rounded-full shadow-none focus:border-neutral-300 focus:outline-none focus:ring-2 focus:ring-neutral-800 focus:ring-offset-1",
props.className
)}
{...primitiveProps}>
@@ -52,18 +52,22 @@ export function TimezoneSelect({
classNames={{
...timezoneClassNames,
input: (state) =>
classNames("text-emphasis h-6", timezoneClassNames?.input && timezoneClassNames.input(state)),
classNames(
"text-emphasis h-6 md:max-w-[145px] max-w-[250px]",
timezoneClassNames?.input && timezoneClassNames.input(state)
),
option: (state) =>
classNames(
"bg-default flex cursor-pointer justify-between py-2.5 px-3 rounded-none text-default ",
"bg-default flex !cursor-pointer justify-between py-2.5 px-3 rounded-none text-default ",
state.isFocused && "bg-subtle",
state.isSelected && "bg-emphasis text-default",
state.isSelected && "bg-emphasis",
timezoneClassNames?.option && timezoneClassNames.option(state)
),
placeholder: (state) => classNames("text-muted", state.isFocused && "hidden"),
dropdownIndicator: () => "text-default",
control: (state) =>
classNames(
"!cursor-pointer",
variant === "default"
? "px-3 py-2 bg-default border-default !min-h-9 text-sm leading-4 placeholder:text-sm placeholder:font-normal focus-within:ring-2 focus-within:ring-emphasis hover:border-emphasis rounded-md border gap-1"
: "text-sm gap-1",