MediaWiki:VectorPlus.css

Revision as of 01:22, 23 February 2024 by Makko Oko (talk | contribs)
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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Style for the custom tools dropdown */
.custom-tools-dropdown {
  position: relative;
  display: inline-block;
}

/* Style for the dropdown button */
.custom-tools-dropdown .mw-collapsible-toggle {
  background-color: #4CAF50;
  color: white;
  padding: 8px 12px;
  font-size: 13px;
  border: none;
}

/* Style for the dropdown content */
.custom-tools-dropdown .pBody {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Show the dropdown content on hover */
.custom-tools-dropdown:hover .pBody {
  display: block;
}