/* This rule hides the display of inherited types */
.typelist.inheritance {
    display: contents;
}

/* This rule hides the display of implemented types */
.typelist.implements {
    display: contents;
}

/* This rule hides the display of derived types */
/*
.typelist.derived {
    display: none;
} */

.typelist.inheritedMembers {
    display: none;
}

.typelist.extensionMethods {
    display: none;
} 

/* See https://github.com/dotnet/docfx/discussions/9655#discussioncomment-8261601 for explanation */
.parameters dd {
    display: none;    
}