MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tags: Manual revert Reverted |
||
| Line 4: | Line 4: | ||
text-decoration: underline; | text-decoration: underline; | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
. | .image-hover img { | ||
display: none; | display: none; | ||
position: absolute; | position: absolute; | ||
top: | top: 20px; | ||
left: 0; | left: 0; | ||
max-width: 200px; /* Adjust size as needed */ | |||
border: 1px solid #ccc; | |||
background: white; | background: white; | ||
padding: 5px; | padding: 5px; | ||
box-shadow: 2px 2px 5px rgba(0,0,0,0.3); | |||
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); | |||
z-index: 1000; | z-index: 1000; | ||
} | } | ||
.image-hover:hover img { | |||
.image-hover:hover | |||
display: block; | display: block; | ||
} | } | ||
Revision as of 22:41, 12 February 2025
/* CSS placed here will be applied to all skins */
.image-hover {
position: relative;
text-decoration: underline;
cursor: pointer;
}
.image-hover img {
display: none;
position: absolute;
top: 20px;
left: 0;
max-width: 200px; /* Adjust size as needed */
border: 1px solid #ccc;
background: white;
padding: 5px;
box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
z-index: 1000;
}
.image-hover:hover img {
display: block;
}