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. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

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