GitHub Red Issues

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

23.12.2021 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

/* ==UserStyle==
@name           GitHub Red Issues
@namespace      github.com/openstyles/stylus
@version        1.0.16
@description    Turns the issue color of closed issues from purple back to red - back reddish color icon for closed github issues.
@author         Katsute, kidonng, krystian3w, iam-py-test, obfuscatedgenerated
@license        CC BY-NC-SA 4.0 https://creativecommons.org/licenses/by-nc-sa/4.0/
==/UserStyle== */
@-moz-document domain("github.com") {
/* Copyright (C) 2021 Katsute <https://github.com/Katsute> */

:root {
    --rissue-pull-merged : var(--color-done-emphasis, #8957e5);
    --rissue-issue-closed: var(--color-danger-fg, #F85149);
    --rissue-white       : var(--color-fg-on-emphasis, #F0F6Fc);
}

/* issue icon */

svg.octicon-issue-closed.closed,
svg.octicon-issue-closed.color-fg-done {
    color: var(--rissue-issue-closed) !important;
}

/* issue badge */

span[title="Status: Closed"] {
    background-color: var(--rissue-issue-closed) !important;
}

span[title="Status: Closed"] > svg.octicon-issue-closed {
    color: var(--rissue-white) !important;
}

/* issue timeline */

.TimelineItem-badge.color-bg-done-emphasis {
    background-color: var(--rissue-issue-closed) !important;
}

.TimelineItem-badge.color-bg-done-emphasis > svg.octicon-issue-closed {
    color: var(--rissue-white) !important;
}

/* pull timeline */

div.pull-discussion-timeline .TimelineItem-badge.color-bg-done-emphasis {
    background-color: var(--rissue-pull-merged) !important;
}

/* projects beta */

svg[aria-label="Closed issue"] {
    color: var(--rissue-issue-closed) !important;
}
}