The issue has been closed
<!--
Thanks for reporting a bug! â›°
Make sure the bug is caused by Refined GitHub. Try disabling the extension first.
Show us the bug and help us replicate it, include:
1. A REAL URL where the bug appears. If it happens on a private repo, find an equivalent public URL.
2. A screenshot/video/gif of the issue, if it’s visual.
3. Any related errors in the browser’s console, if any.
-->
The extension somehow modifies the draft icon in the PR list to this
Before

I then had to add this to custom CSS:
.js-issue-row [aria-label="Open draft pull request"] svg {
stroke: none !important;
fill: var(--color-text-tertiary) !important;
}
After

After should be the default behavior though

posted by fregante about 4 years ago 
Maybe the style can be tweaked (via low-dpi media query) to look better on low-dpi displays. Here are the zoomed in screenshots you posted
<img width="119" alt="Screen Shot 5" src="https://user-images.githubusercontent.com/1402241/111374102-553e5f00-8662-11eb-937a-8baab4e653e3.png"> <img width="105" alt="Screen Shot 6" src="https://user-images.githubusercontent.com/1402241/111374103-55d6f580-8662-11eb-8f3a-a529a433877b.png">
VS:
<img width="107" alt="Screen Shot 10" src="https://user-images.githubusercontent.com/1402241/111374331-96367380-8662-11eb-8666-1758086a535d.png"> <img width="117" alt="Screen Shot 9" src="https://user-images.githubusercontent.com/1402241/111374335-9767a080-8662-11eb-8bc6-ad7048285aa2.png">
posted by fregante about 4 years ago
Well then why not making it a selectable feature? Because I can imagine I'm not the only one who is currently not really happy with this. Same with the repo header width, that I had to find out how to revert the changes myself. I understand the reasons behind why people prefer it this way, but since there are so many features that are selectable, why don't you make the style selectable as well? Speaking for myself, I like to use the additional features, but I prefer to keep the default style.
posted by FoxtrotSierra6829 about 4 years ago
@FoxtrotSierra6829 PRs welcome, both to potentially make it toggleable or improve it as @fregante is talking about.
posted by busches about 4 years ago
I prefer to keep the default style.
We offer a CSS style field in the options where you can use CSS to undo the feature if you prefer it that way, probably with:
.js-issue-row [aria-label='Open draft pull request'] svg {
stroke-width: 0 !important;
color: gray !important;
}
Since you prefer the feature to be off, there's no need to improve it on low-dpi. Closing
posted by fregante about 4 years ago