MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→â€: →â€: div#content a.external { background:none !important; padding: 0px !import...")  |
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; | ||
| Line 23: | Line 23: | ||
  padding: 5px 0; |   padding: 5px 0; | ||
   |    | ||
  position: absolute; |   position: absolute; | ||
  z-index: 1; |   z-index: 1; | ||
| Line 34: | Line 33: | ||
  visibility: visible; |   visibility: visible; | ||
} | } | ||
*/ | |||
Revision as of 23:16, 26 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;
}
*/