Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:


/* =========================
/* =========================
   ROOT ISOLATION (CRITICAL)
   KILL CITIZEN LINK CARD STYLING
   prevents Citizen "card UI" inheritance
   ONLY inside subtabs
========================= */
========================= */
.mw-subtabs,
.mw-subtabs a {
.mw-subtabs * {
     background: transparent !important;
     background: transparent !important;
     box-shadow: none !important;
     box-shadow: none !important;
     border: none !important;
     border: none !important;
}
    padding: 0 !important;
    border-radius: 0 !important;


/* =========================
     display: inline !important;
  CONTAINER
========================= */
.mw-subtabs {
     display: block;
    border-bottom: 1px solid #a2a9b1;
    margin-bottom: 1em;
    padding-bottom: 0.25em;
}
}


/* =========================
/* override ANY mw-parser-output link styling */
  FLEX ROW (NO STACKING EVER)
.mw-parser-output .mw-subtabs a {
========================= */
     background: transparent !important;
.mw-subtabs__list {
     box-shadow: none !important;
     display: flex !important;
     padding: 0 !important;
     flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
 
    align-items: center;
 
    margin: 0;
     padding: 0;
}
}


/* =========================
/* safety: stop "link as pill button" behavior */
  TAB ITEMS
.mw-subtabs a:hover {
========================= */
     background: rgba(54,108,204,0.08) !important;
.mw-subtabs__item {
     display: inline-flex !important;
 
    padding: 0.3em 0.65em;
 
    white-space: nowrap;
 
     border-radius: 4px;
     border-radius: 4px;
    color: inherit;
    text-decoration: none;
}
/* links inside MediaWiki output */
.mw-subtabs__item a {
    color: inherit !important;
    text-decoration: none !important;
}
/* =========================
  ACTIVE TAB
========================= */
.mw-subtabs__item.is-active {
    font-weight: 600;
    border-bottom: 2px solid #36c;
}
/* =========================
  HOVER STATE
========================= */
.mw-subtabs__item:hover {
    background: rgba(54,108,204,0.08) !important;
}
/* =========================
  FINAL CITIZEN OVERRIDE (IMPORTANT)
========================= */
.mw-parser-output .mw-subtabs__item {
    background: transparent !important;
    box-shadow: none !important;
}
}

Revision as of 16:20, 21 April 2026

/* =========================
   KILL CITIZEN LINK CARD STYLING
   ONLY inside subtabs
========================= */
.mw-subtabs a {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;

    display: inline !important;
}

/* override ANY mw-parser-output link styling */
.mw-parser-output .mw-subtabs a {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* safety: stop "link as pill button" behavior */
.mw-subtabs a:hover {
    background: rgba(54,108,204,0.08) !important;
    border-radius: 4px;
}