Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for high contrast theme border-color changes #4774

Merged
merged 22 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/fluffy-ravens-thank.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@primer/react": patch
---

- Adjust checkbox and radio border color values for high contrast themes
- Add default border to SegmentedControl
- Add inset box-shadow to StatusLabel to prep for new border-color in dark high contrast
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions packages/react/src/Checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,11 @@ const StyledCheckbox = styled.input`

&:checked,
&:indeterminate {
background: ${get('colors.accent.fg')};
border-color: ${get('colors.accent.fg')};
background: var(--control-checked-bgColor-rest, ${get('colors.accent.fg')});
border-color: var(
--control-checked-bgColor-rest,
${get('colors.accent.fg')}
); /* using bgColor here to avoid a border change in dark high contrast */

&::before {
animation: checkmarkIn 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards 80ms;
Expand All @@ -86,12 +89,12 @@ const StyledCheckbox = styled.input`
}

&:disabled {
background-color: ${get('colors.fg.muted')};
border-color: ${get('colors.fg.muted')};
background-color: var(--control-checked-bgColor-disabled, ${get('colors.fg.muted')});
border-color: var(--control-checked-borderColor-disabled, ${get('colors.fg.muted')});
opacity: 1;

&::before {
background-color: ${get('colors.fg.onEmphasis')};
background-color: var(--control-checked-fgColor-disabled, ${get('colors.fg.onEmphasis')});
}
}

Expand All @@ -103,7 +106,7 @@ const StyledCheckbox = styled.input`
}

&:indeterminate {
background: ${get('colors.accent.fg')};
background: var(--control-checked-bgColor-rest, ${get('colors.accent.fg')});
&::before {
mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDEwIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAxQzAgMC40NDc3MTUgMC40NDc3MTUgMCAxIDBIOUM5LjU1MjI5IDAgMTAgMC40NDc3MTUgMTAgMUMxMCAxLjU1MjI4IDkuNTUyMjkgMiA5IDJIMUMwLjQ0NzcxNSAyIDAgMS41NTIyOCAwIDFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K');
visibility: visible;
Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/CircleOcticon/CircleOcticon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export default {
} as Meta<typeof CircleOcticon>

export const Default = () => (
<CircleOcticon icon={CheckIcon} size={32} sx={{backgroundColor: 'success.fg', color: 'fg.onEmphasis'}} />
<CircleOcticon icon={CheckIcon} size={32} sx={{backgroundColor: 'success.emphasis', color: 'fg.onEmphasis'}} />
)

export const Playground: StoryFn<typeof CircleOcticon> = args => <CircleOcticon {...args} />

Playground.args = {
icon: CheckIcon,
size: 32,
sx: {backgroundColor: 'success.fg', color: 'fg.onEmphasis'},
sx: {backgroundColor: 'success.emphasis', color: 'fg.onEmphasis'},
}

Playground.argTypes = {
Expand Down
7 changes: 6 additions & 1 deletion packages/react/src/Radio/Radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,17 @@ const StyledRadio = styled.input`
border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); /* checked -> unchecked - add 120ms delay to fully see animation-out */

&:checked {
border-color: ${get('colors.accent.fg')};
border-width: var(--base-size-4, 4px);
border-color: var(
--control-checked-bgColor-rest,
${get('colors.accent.fg')}
); /* using bgColor here to avoid a border change in dark high contrast */
background-color: var(--control-checked-fgColor-rest, ${get('colors.fg.onEmphasis')});

&:disabled {
cursor: not-allowed;
border-color: ${get('colors.fg.muted')};
background-color: ${get('colors.fg.muted')};
}
}

Expand Down
2 changes: 2 additions & 0 deletions packages/react/src/SegmentedControl/SegmentedControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ type SegmentedControlProps = {
const getSegmentedControlStyles = (props: {isFullWidth?: boolean; size?: SegmentedControlProps['size']}) => ({
backgroundColor: 'segmentedControl.bg',
borderRadius: 2,
border: '1px solid',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe add a comment explaining why we use a transparent border?

borderColor: 'var(--controlTrack-borderColor-rest, transparent)',
display: props.isFullWidth ? 'flex' : 'inline-flex',
fontSize: props.size === 'small' ? 0 : 1,
height: props.size === 'small' ? '28px' : '32px', // TODO: use primitive `control.{small|medium}.size` when it is available
Expand Down
10 changes: 10 additions & 0 deletions packages/react/src/StateLabel/StateLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,42 +52,52 @@ const colorVariants = variant({
issueClosed: {
backgroundColor: 'done.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-done-emphasis, transparent)',
},
issueClosedNotPlanned: {
backgroundColor: 'neutral.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-neutral-emphasis, transparent)',
},
pullClosed: {
backgroundColor: 'closed.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-closed-emphasis, transparent)',
},
pullMerged: {
backgroundColor: 'done.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-done-emphasis, transparent)',
},
pullQueued: {
backgroundColor: 'attention.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-attention-emphasis, transparent)',
},
issueOpened: {
backgroundColor: 'open.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-open-emphasis, transparent)',
},
pullOpened: {
backgroundColor: 'open.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-open-emphasis, transparent)',
},
draft: {
backgroundColor: 'neutral.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-neutral-emphasis, transparent)',
},
issueDraft: {
backgroundColor: 'neutral.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-neutral-emphasis, transparent)',
},
unavailable: {
backgroundColor: 'neutral.emphasis',
color: 'fg.onEmphasis',
boxShadow: 'var(--boxShadow-thin, inset 0 0 0 1px) var(--borderColor-neutral-emphasis, transparent)',
},
},
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ exports[`StateLabel renders children 1`] = `
border-radius: 100px;
background-color: var(--bgColor-open-emphasis,var(--color-open-emphasis,#1f883d));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-open-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down Expand Up @@ -81,6 +82,7 @@ exports[`StateLabel respects the status prop 1`] = `
border-radius: 100px;
background-color: var(--bgColor-open-emphasis,var(--color-open-emphasis,#1f883d));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-open-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down Expand Up @@ -140,6 +142,7 @@ exports[`StateLabel respects the status prop 2`] = `
border-radius: 100px;
background-color: var(--bgColor-done-emphasis,var(--color-done-emphasis,#8250df));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-done-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down Expand Up @@ -199,6 +202,7 @@ exports[`StateLabel respects the status prop 3`] = `
border-radius: 100px;
background-color: var(--bgColor-neutral-emphasis,var(--color-neutral-emphasis,#6e7781));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-neutral-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down Expand Up @@ -255,6 +259,7 @@ exports[`StateLabel respects the status prop 4`] = `
border-radius: 100px;
background-color: var(--bgColor-done-emphasis,var(--color-done-emphasis,#8250df));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-done-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down Expand Up @@ -311,6 +316,7 @@ exports[`StateLabel respects the status prop 5`] = `
border-radius: 100px;
background-color: var(--bgColor-attention-emphasis,var(--color-attention-emphasis,#9a6700));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-attention-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down Expand Up @@ -367,6 +373,7 @@ exports[`StateLabel respects the variant prop 1`] = `
border-radius: 100px;
background-color: var(--bgColor-open-emphasis,var(--color-open-emphasis,#1f883d));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-open-emphasis,transparent);
padding-left: 8px;
padding-right: 8px;
padding-top: 4px;
Expand Down Expand Up @@ -426,6 +433,7 @@ exports[`StateLabel respects the variant prop 2`] = `
border-radius: 100px;
background-color: var(--bgColor-open-emphasis,var(--color-open-emphasis,#1f883d));
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
box-shadow: var(--boxShadow-thin,inset 0 0 0 1px) var(--borderColor-open-emphasis,transparent);
padding-left: 12px;
padding-right: 12px;
padding-top: 8px;
Expand Down
8 changes: 4 additions & 4 deletions packages/react/src/ToggleSwitch/ToggleSwitch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const SwitchButton = styled.button<SwitchButtonProps>`
}
}

&:hover,
&:hover:not(:disabled),
&:focus:focus-visible {
background-color: ${get('colors.switchTrack.hoverBg')};
}
Expand All @@ -143,9 +143,9 @@ const SwitchButton = styled.button<SwitchButtonProps>`
if (props.checked) {
return css`
background-color: ${get('colors.switchTrack.checked.bg')};
border-color: transparent;
border-color: var(--control-checked-borderColor-rest, transparent);

&:hover,
&:hover:not(:disabled),
&:focus:focus-visible {
background-color: ${get('colors.switchTrack.checked.hoverBg')};
}
Expand All @@ -158,7 +158,7 @@ const SwitchButton = styled.button<SwitchButtonProps>`
} else {
return css`
background-color: ${get('colors.switchTrack.bg')};
border-color: transparent;
border-color: var(--controlTrack-borderColor-rest, transparent);

&:active {
background-color: ${get('colors.switchTrack.activeBg')};
Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const TooltipBase = styled.span<SxProp>`
padding: 0.5em 0.75em;
font: normal normal 11px/1.5 ${get('fonts.normal')};
-webkit-font-smoothing: subpixel-antialiased;
color: ${get('colors.fg.onEmphasis')};
color: var(--tooltip-fgColor, ${get('colors.fg.onEmphasis')});
text-align: center;
text-decoration: none;
text-shadow: none;
Expand All @@ -30,7 +30,7 @@ const TooltipBase = styled.span<SxProp>`
white-space: pre;
pointer-events: none;
content: attr(aria-label);
background: ${get('colors.neutral.emphasisPlus')};
background: var(--tooltip-bgColor, ${get('colors.neutral.emphasisPlus')});
border-radius: ${get('radii.2')};
opacity: 0;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/TooltipV2/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ const StyledTooltip = styled.span`
white-space: normal;
font: normal normal 11px/1.5 ${get('fonts.normal')};
-webkit-font-smoothing: subpixel-antialiased;
color: ${get('colors.fg.onEmphasis')};
color: var(--tooltip-fgColor, ${get('colors.fg.onEmphasis')});
text-align: center;
word-wrap: break-word;
background: ${get('colors.neutral.emphasisPlus')};
background: var(--tooltip-bgColor, ${get('colors.neutral.emphasisPlus')});
border-radius: ${get('radii.2')};
border: 0;
opacity: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1987,10 +1987,10 @@ exports[`TextInput renders trailingAction icon button 1`] = `
white-space: normal;
font: normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
-webkit-font-smoothing: subpixel-antialiased;
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
color: var(--tooltip-fgColor,var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff)));
text-align: center;
word-wrap: break-word;
background: var(--bgColor-emphasis,var(--color-neutral-emphasis-plus,#24292f));
background: var(--tooltip-bgColor,var(--bgColor-emphasis,var(--color-neutral-emphasis-plus,#24292f)));
border-radius: 6px;
border: 0;
opacity: 0;
Expand Down Expand Up @@ -3089,10 +3089,10 @@ exports[`TextInput renders trailingAction text button with a tooltip 1`] = `
white-space: normal;
font: normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
-webkit-font-smoothing: subpixel-antialiased;
color: var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff));
color: var(--tooltip-fgColor,var(--fgColor-onEmphasis,var(--color-fg-on-emphasis,#ffffff)));
text-align: center;
word-wrap: break-word;
background: var(--bgColor-emphasis,var(--color-neutral-emphasis-plus,#24292f));
background: var(--tooltip-bgColor,var(--bgColor-emphasis,var(--color-neutral-emphasis-plus,#24292f)));
border-radius: 6px;
border: 0;
opacity: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {get} from '../../constants'

export const sharedCheckboxAndRadioStyles = css`
appearance: none;
border-color: ${get('colors.neutral.emphasis')};
border-color: var(--control-borderColor-emphasis, ${get('colors.neutral.emphasis')});
border-style: solid;
border-width: ${get('borderWidths.1')};
cursor: pointer;
Expand All @@ -14,6 +14,7 @@ export const sharedCheckboxAndRadioStyles = css`
place-content: center;
position: relative;
width: var(--base-size-16, 16px);
background-color: ${get('colors.canvas.default')};

&:disabled {
background-color: ${get('colors.input.disabledBg')};
Expand Down
Loading