GitHub Red Closed Icon Issues

Turns the issue color of closed issues from purple back to red - back reddish color icon for closed github issues.

当前为 2021-11-08 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==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;
    }
}