MediaWiki:Common.css

From MHWiki
Revision as of 20:20, 17 November 2021 by Mark Bodiella (talk | contribs) (Replaced with Hitgrab approved CSS code from BT)

Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */
/* The following CSS properties can be understood generally as follows:
[element type].[class name] [element descendants] {
  [property]: [value];
}
If you wish to apply the properties, simply insert class="[class name]" on applicable elements of [element type] */

/* Padding-right specification for sort buttons in table headers */
table.sortable th:not(.unsortable) {
  padding-right: 2em;
}

/* 5px padding, 1px border and border-collapse for tables */
table.b_and_p th, td {
  border: 0.083em solid;
  padding: 0.416em;
}
table.b_and_p {
  border-collapse: collapse;
}

/* Sticky table rows including persistent bordering during scroll */
tr.sticky_table_row {
  position: sticky;
  position: -webkit-sticky; /* for Safari compatibility */
  top: 0.083em;
  box-shadow: 0 0.083em, 0 -0.083em;
}

/* Zebra stripe styling for tables */
table.zebra_even tr:nth-child(even) {
  background-color: #eeeeee;
}
table.zebra_odd tr:nth-child(odd) {
  background-color: #eeeeee;
}