MediaWiki:Print.css

From Project Gorgon
Jump to navigation Jump to search

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will affect the print output */
/* Extractum11 Code for Tooltips*/
[tooltip]:after {
    position: absolute;
    opacity: 0;
    content: attr(tooltip);
    white-space: pre-line;
    padding: 10px;
    color: #E7E6F2;
    border-radius: 10px;
    transition: all 0.2s ease-in;
    box-shadow: 2px 2px 1px silver;
    margin-top: -30px;
    margin-left: -0px;
}


[tooltip]:hover:after {
    opacity: 1;
    background: #313040;
    margin-top: -30px;
    margin-left: -0px;
}