Turns the issue color of closed issues from purple back to red.
GitHub: Make closed issues red again by obfuscatedgenerated
Details
Authorobfuscatedgenerated
LicenseNo License
Categorygithub
Created
Updated
Size670 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
NOTE: In some instances the icon may be purple due to static assets being used. Alternative assets will be added to this style soon
Source code
/* ==UserStyle==
@name GitHub: Make closed issues red again
@version 20211106.21.59
@namespace userstyles.world/user/obfuscatedgenerated
@description Turns the issue color of closed issues from purple back to red.
@author obfuscatedgenerated
@license No License
==/UserStyle== */
@-moz-document domain("github.com") {
* {
--color-done-emphasis: #cb2536;
}
[title="Label: Pro"] {
--color-done-emphasis: #8957e5;
}
[title="Status: Merged"] {
--color-done-emphasis: #8957e5;
}
.octicon-issue-closed:not(.State--merged) {
--color-done-fg: #c03837 !important;
}
[aria-label="Closed issue"] {
color: #c03837 !important;
}
}