Skip to content

Commit

Permalink
fix(odyssey-react): disabled text color for Select
Browse files Browse the repository at this point in the history
Jeff Belser committed Jan 28, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 874f966 commit 38445f2
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@

&:disabled {
opacity: 1;
color: var(--ColorText);
color: var(--ColorTextDisabled);
cursor: not-allowed;
}

Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ export const theme: ThemeReducer = (theme) => ({
ColorFocusDanger: theme.ColorFocusDanger,
ColorFocusPrimary: theme.ColorFocusPrimary,
ColorText: theme.ColorTextBody,
ColorTextDisabled: theme.ColorTextBody,
ColorTextDisabled: theme.ColorTextSub,
ColorTextPlaceholder: theme.ColorTextSub,
FocusOutlineWidth: theme.FocusOutlineWidthBase,
FontFamily: theme.FontFamilyBase,

0 comments on commit 38445f2

Please sign in to comment.