From 68388e56cf102af5f8406f2fa4fb253c4910210d Mon Sep 17 00:00:00 2001 From: Jordan Koschei <91091570+jordankoschei-okta@users.noreply.github.com> Date: Sun, 30 Jun 2024 20:48:48 -0400 Subject: [PATCH] Remove vestigial lamp from status pills (#2270) OKTA-742039 feat: remove vestigial lamp from status pills --- .../src/theme/components.tsx | 25 ------------------- 1 file changed, 25 deletions(-) diff --git a/packages/odyssey-react-mui/src/theme/components.tsx b/packages/odyssey-react-mui/src/theme/components.tsx index a704e36fa7..827edc6d99 100644 --- a/packages/odyssey-react-mui/src/theme/components.tsx +++ b/packages/odyssey-react-mui/src/theme/components.tsx @@ -1029,49 +1029,24 @@ export const components = ({ fontSize: "0.71428571rem", textTransform: "uppercase", - "&::before": { - content: "''", - width: "0.42857143rem", - height: "0.42857143rem", - marginInlineEnd: odysseyTokens.Spacing2, - borderRadius: "100%", - backgroundColor: odysseyTokens.HueNeutral400, - }, - [`&.${chipClasses.colorError}`]: { backgroundColor: odysseyTokens.PaletteDangerLighter, color: odysseyTokens.TypographyColorDanger, - - "&::before": { - backgroundColor: odysseyTokens.PaletteDangerMain, - }, }, [`&.${chipClasses.colorInfo}`]: { backgroundColor: odysseyTokens.PalettePrimaryLighter, color: odysseyTokens.PalettePrimaryText, - - "&::before": { - backgroundColor: odysseyTokens.HueBlue400, - }, }, [`&.${chipClasses.colorSuccess}`]: { backgroundColor: odysseyTokens.PaletteSuccessLighter, color: odysseyTokens.TypographyColorSuccess, - - "&::before": { - backgroundColor: odysseyTokens.PaletteSuccessMain, - }, }, [`&.${chipClasses.colorWarning}`]: { backgroundColor: odysseyTokens.PaletteWarningLighter, color: odysseyTokens.TypographyColorWarning, - - "&::before": { - backgroundColor: odysseyTokens.HueYellow200, - }, }, }),