Skip to content

Commit

Permalink
Merge pull request #30978 from Expensify/revert-30653-left-line-of-qu…
Browse files Browse the repository at this point in the history
…oted-is-not-visible-when-hovering-over-it-in-notes

[CP Staging] Revert "Left line/border of quoted text is not visible when hovering over it in Notes"

(cherry picked from commit 8d6fc37)
  • Loading branch information
MonilBhavsar authored and OSBotify committed Nov 7, 2023
1 parent 06fb8c7 commit 464529b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles/StyleUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,9 @@ function getBadgeColorStyle(isSuccess: boolean, isError: boolean, isPressed = fa
function getButtonBackgroundColorStyle(buttonState: ButtonStateName = CONST.BUTTON_STATES.DEFAULT, isMenuItem = false): ViewStyle {
switch (buttonState) {
case CONST.BUTTON_STATES.PRESSED:
return isMenuItem ? {backgroundColor: themeColors.border} : {backgroundColor: themeColors.buttonPressedBG};
return {backgroundColor: themeColors.buttonPressedBG};
case CONST.BUTTON_STATES.ACTIVE:
return isMenuItem ? {backgroundColor: themeColors.highlightBG} : {backgroundColor: themeColors.buttonHoveredBG};
return isMenuItem ? {backgroundColor: themeColors.border} : {backgroundColor: themeColors.buttonHoveredBG};
case CONST.BUTTON_STATES.DISABLED:
case CONST.BUTTON_STATES.DEFAULT:
default:
Expand Down

0 comments on commit 464529b

Please sign in to comment.