Skip to content

Commit

Permalink
Fix color on relationship dropdown (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute authored Dec 16, 2024
1 parent 9c70d9e commit db69fd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "GitHub Red Issues",
"author": "Katsute",
"description": "Revert closed GitHub issues from purple back to red.",
"version": "9.1",
"version": "9.2",
"homepage_url": "https://github.com/KatsuteDev/GitHub-Red-Issues",
"icons": {
"16": "icon16.png",
Expand Down
8 changes: 6 additions & 2 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
color: var(--rissue-issue-closed-fg) !important;
}

svg:has(path[d="M11.28 6.78a.75.75 0 0 0-1.06-1.06L7.25 8.69 5.78 7.22a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l3.5-3.5Z"]) path{
fill: unset !important;
}

:is(
span.State--merged, /* issue badge (legacy) */
.TimelineItem-badge, /* timeline icon (legacy) */
Expand All @@ -57,7 +61,7 @@ tasklist-block-title > div.color-bg-done{
tracked-issues-progress svg,
) > circle[stroke^="var(--fgColor-done"]:last-child,
/* sub issue circle */
svg[class^="ProgressCircle-module__completedIcon"] > circle {
svg[class^="ProgressCircle-module__completedIcon"] > circle{
stroke: var(--rissue-issue-closed) !important;
}

Expand Down Expand Up @@ -85,7 +89,7 @@ projects-v2 svg[data-target="tracked-issues-progress.progress"] circle[stroke-da
react-app[app-name="issues-react"]
) :is(
svg[class^="ProgressCircle-module__completedIcon"]
) > path {
) > path{
fill: var(--rissue-issue-closed) !important;
}

Expand Down

0 comments on commit db69fd3

Please sign in to comment.