Skip to content

Commit

Permalink
Fix button text only color on hover (#2724)
Browse files Browse the repository at this point in the history
* Fix button text only color on hover

* CR changes
  • Loading branch information
lmuntaner authored Dec 5, 2024
1 parent 22868c4 commit b41e002
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/frontend/src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1724,11 +1724,6 @@ by all browsers (FF is missing) */
border: none;
}

.c-button--textOnly:hover,
.c-button--textOnly:focus {
color: var(--rc-interactionHighlight-text);
}

.c-button:not([disabled]):focus,
.c-button:not([disabled]):hover {
color: var(--rc-onButton);
Expand All @@ -1739,6 +1734,11 @@ by all browsers (FF is missing) */
text-decoration: none;
}

.c-button--textOnly:not([disabled]):hover,
.c-button--textOnly:not([disabled]):focus {
color: var(--rc-interactionHighlight-text);
}

.c-button--secondary {
background: var(--rc-button-secondary);
color: var(--rc-onButton-secondary);
Expand Down

0 comments on commit b41e002

Please sign in to comment.