MediaWiki:Common.css

From Vanilla Plus
Revision as of 22:42, 12 February 2025 by Admin (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.
/* CSS placed here will be applied to all skins */
.image-hover {
    position: relative;
    text-decoration: underline;
    cursor: pointer;
}

.hover-image-wrapper {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    max-width: 200px; /* Adjust as needed */
    background: white;
    padding: 5px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.image-hover:hover .hover-image-wrapper {
    display: block;
}