MediaWiki:Common.css: Difference between revisions
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 */ | ||
. | .tooltip { | ||
border-bottom: 1px dotted #000; | |||
cursor: | cursor: help; | ||
} | } | ||
.tooltip | .tooltip:hover::after { | ||
content: attr(title); | |||
position: absolute; | position: absolute; | ||
background: white; | background: white; | ||
border: 1px solid | border: 1px solid #ccc; | ||
padding: 5px; | padding: 5px; | ||
white-space: nowrap; | |||
box-shadow: 2px 2px 5px rgba(0,0,0,0.3); | box-shadow: 2px 2px 5px rgba(0,0,0,0.3); | ||
} | } |
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); }