Turns the issue color of closed issues from purple back to red - back reddish color icon for closed github issues.
ของเมื่อวันที่
/* ==UserStyle==
@name GitHub Red Closed Icon Issues
@namespace github.com/openstyles/stylus
@version 1.0.13
@description Turns the issue color of closed issues from purple back to red - back reddish color icon for closed github issues.
@author obfuscatedgenerated, Katsute, kidonng, krystian3w, iam-py-test
@license CC BY-NC-SA 4.0 https://creativecommons.org/licenses/by-nc-sa/4.0/
==/UserStyle== */
@-moz-document domain("github.com") {
* {
--color-done-emphasis: var(--color-danger-fg, #F85149, #CB2536);
}
[title="Label: Pro"] {
--color-done-emphasis: #8957e5;
}
[title="Status: Merged"] {
--color-done-emphasis: var(--color-danger-fg, #F85149);
}
.octicon-issue-closed:not(.State--merged) {
--color-done-fg: var(--color-danger-fg, #F85149, #C03837) !important;
}
[aria-label="Closed issue"] {
color: var(--color-danger-fg, #F85149, #C03837) !important;
}
}