From 94295c892c5dc124bbf956e6e09b5eda98efddaa Mon Sep 17 00:00:00 2001 From: domyen Date: Wed, 24 Jun 2020 14:26:42 -0400 Subject: [PATCH 1/4] Improve Boolean focus state again --- lib/components/src/controls/Boolean.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/components/src/controls/Boolean.tsx b/lib/components/src/controls/Boolean.tsx index cd33d862194..cc896b22182 100644 --- a/lib/components/src/controls/Boolean.tsx +++ b/lib/components/src/controls/Boolean.tsx @@ -24,13 +24,11 @@ const Label = styled.label(({ theme }) => ({ border: 'none', background: 'transparent', cursor: 'pointer', + borderRadius: '3em', '&:focus': { outline: 'none', - - '& ~ span': { - boxShadow: `${theme.color.secondary} 0 0 0 1px inset !important`, - }, + boxShadow: `${theme.color.secondary} 0 0 0 1px inset !important`, }, }, @@ -82,7 +80,7 @@ const parse = (value: string | null) => value === 'true'; export type BooleanProps = ControlProps & BooleanConfig; export const BooleanControl: FC = ({ name, value, onChange }) => ( -