-
Notifications
You must be signed in to change notification settings - Fork 4
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 fill color for test results icon #505
Fix fill color for test results icon #505
Conversation
🦋 Changeset detectedLatest commit: 86d8541 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -1,4 +1,4 @@ | |||
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M1 10H4V13H1V10Z" fill="currentColor" class="icon-dark" /> | |||
<path d="M1 10H4V13H1V10Z" fill="#D0D2E0" class="icon-light" /> |
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.
Shouldn't this continue to be currentColor
?
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.
I was following what the x24 version had since it allowed changing the color of that part, but I guess it's the class that matters more. I reverted this one and updated the x24 to match.
cypress-design Run #2539
Run Properties:
|
Project |
cypress-design
|
Branch Review |
chrisbreiding/fix-test-results-fill-color
|
Run status |
Passed #2539
|
Run duration | 02m 37s |
Commit |
8933b7d018 ℹ️: Merge 86d8541a78a5602c0285fdc343b676d006dc281c into c7d9e8c264117172cf03ef87414a...
|
Committer | Chris Breiding |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
0
|
Skipped |
0
|
Passing |
222
|
View all changes introduced in this branch ↗︎ |
UI Coverage
11.36%
|
|
---|---|
Untested elements |
166
|
Tested elements |
25
|
Accessibility
99.37%
|
|
---|---|
Failed rules |
0 critical
1 serious
0 moderate
1 minor
|
Failed elements |
22
|
Without the
icon-light
class, it's not possible to change the little box's fill color separately from the rest of the icon.