MediaWiki:Common.css

From Fatesend Wiki
Revision as of 20:23, 26 January 2026 by Superadmin (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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* iRO-like tables */
table.wikitablec,
table.wikitable {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}

/* Header */
table.wikitablec th,
table.wikitable th {
  background: #f2f2f2;
  border: 1px solid #a2a9b1;
  padding: 6px 8px;
  font-size: 90%;
  white-space: nowrap; /* iRO-like headers */
}

/* Cells */
table.wikitablec td,
table.wikitable td {
  border: 1px solid #a2a9b1;
  padding: 6px 8px;
  vertical-align: top;
  font-size: 90%;
}

/* Sortable icon spacing */
table.sortable th {
  cursor: pointer;
}

/* Row hover (subtle) */
table.wikitablec tr:hover td,
table.wikitable tr:hover td {
  background: #f9f9f9;
}

/* Keep text readable, but don't force aggressive breaking */
table.wikitablec td,
table.wikitable td {
  overflow-wrap: normal;
  word-break: normal;
}