MediaWiki:Common.css: Difference between revisions

From Vanilla Plus
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.custom-tooltip {
.hover-image {
     position: relative;
     position: relative;
     cursor: pointer;
     text-decoration: none;
    border-bottom: 1px dotted black; /* Makes it look like a tooltip */
}
}


.tooltip-content {
.hover-image:hover::after {
     display: none;
     content: attr(data-image);
     position: absolute;
     position: absolute;
     top: 1.5em;
     top: 20px;
     left: 0;
     left: 20px;
     background: white;
    width: 200px; /* Adjust size as needed */
     border: 1px solid black;
    height: auto;
    background-size: cover;
     background-position: center;
    background-repeat: no-repeat;
    display: block;
     border: 1px solid #ccc;
     padding: 5px;
     padding: 5px;
     z-index: 100;
     background-color: white;
    width: auto;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 250px; /* Adjust size if needed */
     box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
 
.custom-tooltip:hover .tooltip-content {
    display: block;
}
}

Revision as of 03:13, 12 February 2025

/* CSS placed here will be applied to all skins */
.hover-image {
    position: relative;
    text-decoration: none;
}

.hover-image:hover::after {
    content: attr(data-image);
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px; /* Adjust size as needed */
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    border: 1px solid #ccc;
    padding: 5px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}