MediaWiki:Common.css

From Descendants of Darkness Wiki

Revision as of 18:48, 4 April 2024 by Ninja (talk | contribs)

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.
/* Ensure scrollbar is visible above the header */
#mw-navigation {
    z-index: 1000; /* Ensure sidebar appears above other content */
    overflow-y: auto; /* Enable scrolling for the sidebar */
    height: calc(100vh - 56px); /* Adjust height to fit viewport minus header height */
}

/* Style the scrollbar for the sidebar */
#mw-navigation::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

#mw-navigation::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the scrollbar track */
}

#mw-navigation::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
}

#mw-navigation::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}