Skip to content

Change closed issue color into merged PR by eggplants

Screenshot of Change closed issue color into merged PR

Details

Authoreggplants

LicenseMIT

Categorygithub

Created

Updated

Size825 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Change color of closed issue into merged PR one!

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Change closed issue color into merged PR
@version      20211010.14.15
@namespace    userstyles.world/user/eggplants
@description  Change color of closed issue into merged PR one
@author       eggplants
@license      MIT
==/UserStyle== */
@-moz-document regexp("https://github.com/[a-z0-9]+$"),
regexp("https://github.com/[^/]+/[^/]+/issues.*") {
    svg.octicon.octicon-issue-closed.color-text-danger,
    svg.octicon.octicon-issue-closed.closed {
        fill: #b780ff !important;
    }
    span.State.State--closed {
        background-color: #b780ff !important;
    }
    span.State.State--closed > svg {
        fill: #000000 !important;
    }
    div.TimelineItem-badge.color-text-white.color-bg-danger-inverse {
        background-color: #b780ff !important;
    }
}

Reviews

No reviews yet.