GitHub Red Issues

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

Stan na 23-12-2021. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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