MediaWiki:Common.css

From SZ
Revision as of 10:05, 25 August 2025 by Test2 (talk | contribs)
Jump to navigation Jump to search

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Hide nested items initially */
.portal .body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portal .body ul ul {
    display: none; /* Hide by default */
    margin-left: 1em;
}

/* Style for collapsible headers */
.portal .collapsible-header {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.portal .collapsible-header::before {
    content: "▶";
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.portal .collapsible-header.open::before {
    transform: rotate(90deg);
}