Toggle menu
7
505
3
1.1K
ZNY Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 23:32, 26 March 2026 by Admin (talk | contribs) (Light mode styling)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* ============================================
   ZNY Wiki — SOP Table Styling (Light Mode)
   ============================================ */

/* --- SOP Tables --- */
.table.table-sop {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    margin: 0.75em 0;
    color: #1f2937;
}

.table.table-sop th {
    background: #f3f4f6;
    color: #111827;
    padding: 0.6em 0.75em;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    font-size: 0.9em;
}

.table.table-sop td {
    padding: 0.5em 0.75em;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.table.table-sop tr:last-child td {
    border-bottom: none;
}

.table.table-sop tr:hover td {
    background: #f0f9ff;
}

/* Compact variant */
.table.table-sop-compact {
    font-size: 0.9em;
}
.table.table-sop-compact td,
.table.table-sop-compact th {
    padding: 0.35em 0.6em;
}

.table.table-sop-operational-positions {
    table-layout: auto;
}

/* --- Tabber --- */
.tabber .tabbernav {
    border-bottom: 2px solid #e5e7eb;
}
.tabber .tabbernav li a {
    background: transparent;
    color: #6b7280;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5em 1em;
    margin-bottom: -2px;
    font-size: 0.9em;
}
.tabber .tabbernav li a:hover {
    color: #3b82f6;
}
.tabber .tabbernav li.tabberactive a {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}
.tabber .tabbertab {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    padding: 1em;
    border-radius: 0 0 4px 4px;
}

/* --- Accent bar at top of content --- */
.mw-body::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #3b82f6);
    margin-bottom: 1em;
    border-radius: 2px;
}

/* --- Collapsible toggle --- */
.mw-collapsible-toggle {
    color: #3b82f6 !important;
}

/* --- Stub placeholders --- */
.sop-stub {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 1em;
    border-radius: 4px;
    margin: 0.5em 0;
    color: #6b7280;
    font-style: italic;
}