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
Blanked the page
Tags: Blanking Manual revert
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:


/* =========================
  TAB BAR CONTAINER
========================= */
.wt-tabs {
    display: inline-flex;          /* safer than flex in Citizen */
    flex-wrap: wrap;
    gap: 0.4rem;
    border-bottom: 1px solid #a2a9b1;
    margin-bottom: 1em;
    padding-bottom: 0.25em;
    align-items: center;
}
/* =========================
  TAB LINKS (CRITICAL)
  avoids Citizen card styling
========================= */
.wt-tabs a {
    display: inline-block;
    padding: 0.35em 0.75em;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    line-height: 1.2;
    white-space: nowrap;
}
/* =========================
  HOVER STATE
========================= */
.wt-tabs a:hover {
    background: rgba(54,108,204,0.10);
    border-color: rgba(54,108,204,0.25);
}
/* =========================
  ACTIVE TAB (simple + safe)
========================= */
.wt-tabs a[aria-current="page"],
.wt-tabs a.active {
    font-weight: 600;
    border-bottom: 2px solid #36c;
    background: rgba(54,108,204,0.08);
}

Latest revision as of 18:28, 21 April 2026