MediaWiki:Common.css
MediaWiki interface page
More actions
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 */
html {
scroll-behavior: smooth;
}
.custom-tooltip {
position: fixed;
background: rgba(0, 0, 0, 0.85);
color: #fff;
padding: 6px 10px;
border-radius: 6px;
font-size: 0.85rem;
pointer-events: none;
white-space: nowrap;
z-index: 9999;
opacity: 0;
transform: translateY(5px);
transition: opacity 0.15s ease, transform 0.15s ease;
}
.custom-tooltip.visible {
opacity: 1;
transform: translateY(0);
}