Skip to content

Hide GitHub Activity Feed by overflowcat

Details

Authoroverflowcat

LicensePublic Domain

Categorygithub.com

Created

Updated

Size1.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hide activity feed on GitHub homepage

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           github.com - 2023/5/14 23:56:29
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Hide GitHub Feed
@author         OverflowCat
==/UserStyle== */
@-moz-document url("https://github.com/") {
    main,
    div[aria-label="Explore repositories"] {
        display: none;
    }
    aside[aria-label="Account"] {
        width: 100vw!important;
        max-width: 100vw!important;
        display: block!important;
    }
    aside[aria-label="Account"] + div {
        display: none;
    }
}

div.dashboard-sidebar {
    overflow-y: hidden!important;
}

div[data-target="loading-context.details"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 12px;
}

loading-context > div > div:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

h2.mt-md-4 {
    margin-top: 0px!important;
}

div[data-target="loading-context.details"] + div {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

div#dashboard-user-teams {
    display: none!important;
}

Reviews

No reviews yet.