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.

ของเมื่อวันที่ 08-11-2021 ดู เวอร์ชันล่าสุด

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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