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 {
.tooltip {
     position: relative;
     border-bottom: 1px dotted #000;
     cursor: pointer;
     cursor: help;
    border-bottom: 1px dotted black; /* Adds a dotted underline to make it look like a link */
}
}


.tooltip-content {
.tooltip:hover::after {
     display: none; /* Hide the tooltip by default */
     content: attr(title);
     position: absolute;
     position: absolute;
    top: 1.5em;
    left: 0;
     background: white;
     background: white;
     border: 1px solid black;
     border: 1px solid #ccc;
     padding: 5px;
     padding: 5px;
     z-index: 100;
     white-space: nowrap;
    width: auto;
    max-width: 250px;
     box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
     box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
.custom-tooltip:hover .tooltip-content {
    display: block; /* Show the tooltip on hover */
}
}

Revision as of 23:04, 11 February 2025

/* CSS placed here will be applied to all skins */
.tooltip {
    border-bottom: 1px dotted #000;
    cursor: help;
}

.tooltip:hover::after {
    content: attr(title);
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    white-space: nowrap;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}