MediaWiki:Common.css: Difference between revisions

From The Taylor Archive
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Remove the bottom empty sidebar chunk in Timeless */
 
#mw-site-navigation .sidebar-chunk:last-child,
/* 1. Hide the language portlet chunk completely in Timeless when empty */
#p-lang-sidebar,
#p-lang-sidebar,
#p-lang {
#p-lang {
     display: none !important;
     display: none !important;
}
/* 2. Hide any sidebar card in Timeless that contains no visible links */
#mw-site-navigation .sidebar-chunk:not(:has(ul li)) {
    display: none !important;
}
/* 3. Fallback: target the last card directly if the browser doesn't support :has() */
#mw-site-navigation .sidebar-chunk:last-child {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
}

Revision as of 18:53, 20 July 2026

/* Remove the bottom empty sidebar chunk in Timeless */
#mw-site-navigation .sidebar-chunk:last-child,
#p-lang-sidebar,
#p-lang {
    display: none !important;
}