MediaWiki:Gadget-ReferenceTooltips.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* See [[mw:Reference Tooltips]] */
.referencetooltip {
position: absolute;
list-style: none;
list-style-image: none;
opacity: 0;
font-size: .8em;
margin: 0;
z-index: 5;
padding: 0;
}
.referencetooltip li {
border: none;
border-radius: 7px;
max-width: 500px;
padding: 1em 1.3em 1.3em;
margin: 0px;
background-color: rgb(255, 252, 241);
-webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19);
-moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19);
box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .24), 0 17px 50px 0 rgba(0, 0, 0, .19)
}
.referencetooltip li+li {
margin-left: 7px;
margin-top: -3px;
border: 0;
padding: 0;
height: 3px;
width: 0px;
background-color: transparent;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-top: 15px solid rgb(255, 252, 241);
border-right: 10px transparent solid;
border-left: 10px transparent solid;
}
.referencetooltip>li+li::after {
content: '';
border-top: 8px solid rgb(255, 252, 241);
border-right: 5px transparent solid;
border-left: 5px transparent solid;
margin-top: -12px;
margin-left: -5px;
z-index: 1;
height: 0px;
width: 0px;
display: block;
}
.client-js body .referencetooltip li li {
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
height: auto;
width: auto;
margin: auto;
padding: 0;
position: static;
}
.RTflipped {
padding-top: 17px;
}
.referencetooltip.RTflipped li+li {
position: absolute;
top: 7px;
border-top: 0;
border-bottom: 15px solid rgb(255, 252, 241);
}
.referencetooltip.RTflipped li+li::after {
border-top: 0;
border-bottom: 8px solid rgb(255, 252, 241);
position: absolute;
margin-top: 7px;
}
.RTsettings {
float: right;
height: 24px;
width: 24px;
cursor: pointer;
background-image: url(//upload.wikimedia.org/wikipedia/commons/thumb/0/05/OOjs_UI_icon_advanced.svg/24px-OOjs_UI_icon_advanced.svg.png);
background-image: linear-gradient(transparent, transparent), url(//upload.wikimedia.org/wikipedia/commons/0/05/OOjs_UI_icon_advanced.svg);
margin: -9px -7px 7px 7px;
-webkit-transition: opacity 0.15s;
-moz-transition: opacity 0.15s;
-ms-transition: opacity 0.15s;
-o-transition: opacity 0.15s;
transition: opacity 0.15s;
opacity: 0.6;
filter: alpha(opacity=60);
}
.RTsettings:hover {
opacity: 1;
filter: alpha(opacity=100);
}
.RTTarget {
border: #080086 2px solid;
}