-
Notifications
You must be signed in to change notification settings - Fork 291
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
fix: adjust background color for in call reactions tooltip [WPB-14328] #18310
Conversation
Quality Gate passedIssues Measures |
@@ -167,7 +167,7 @@ | |||
border-radius: 1rem; | |||
font-size: 1.5rem; | |||
&:hover { | |||
background-color: var(--inactive-call-button-border); | |||
background-color: var(--inactive-call-button-hover-bg); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -142,7 +142,7 @@ | |||
display: grid; | |||
padding: 0.4rem; | |||
border-radius: 1rem; | |||
background-color: #fff; | |||
background-color: var(--app-bg-secondary); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var(--app-bg-secondary)
seems to fit here, white in light mode, black in dark mode
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #18310 +/- ##
=======================================
Coverage 46.58% 46.58%
=======================================
Files 828 828
Lines 26029 26030 +1
Branches 5898 5899 +1
=======================================
+ Hits 12125 12127 +2
Misses 12390 12390
+ Partials 1514 1513 -1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
Description
assign css variable for tooltip's background compatible with dark mode
Screenshots/Screencast (for UI changes)
Before:
After:
Checklist