MediaWiki:Common.css
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.
/* Hover cover preview */
.coverThumb {
position: relative;
display: inline-block;
}
.coverThumb .coverPopup {
display: none;
position: absolute;
left: 70px; /* popup appears to the right */
top: -10px;
z-index: 99999;
background: #fff;
border: 1px solid #aaa;
padding: 4px;
box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.coverThumb:hover .coverPopup {
display: block !important;
}
/* Make sure the small thumb doesn't add weird baseline space */
.coverThumb .coverSmall {
width: 60px;
height: 80px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}