MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
/* JRB Hide icons for links and files */ | /* JRB Hide icons for links and files */ | ||
div#content a.external { | div#content a.external { | ||
background:none !important; | background:none !important; | ||
padding: 0px !important; | padding: 0px !important; | ||
} | } | ||
.tooltip { | .tooltip { |
Revision as of 07:38, 28 February 2021
/* CSS placed here will be applied to all skins */ /* JRB Hide icons for links and files */ div#content a.external { background:none !important; padding: 0px !important; } .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; top: 100%; left: 50%; margin-left: -60px; } .tooltip:hover .tooltiptext { visibility: visible; }