MediaWiki:Minerva.css

From Final Fantasy XIV Online Wiki
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.
/* All CSS here will be loaded for users of the MinervaNeue skin */

/* #region Mobile table scrolling */

@media screen and (max-width: 639px) {
  .content table {
    width: unset !important; /* override !important in minerva */
  }
}

.mw-parser-output > table,
.mw-parser-output > section > table /* just minerva things */ {
  max-width: calc(100% + 32px);
  overflow-x: auto;
  overflow-y: visible;
  margin-inline: -16px;
  padding-inline: 16px;
}
@media screen and (min-width: 640px) {
  .mw-parser-output > table,
  .mw-parser-output > section > table {
    max-width: calc(100% + 6.70rem);
    margin-inline: -3.35rem;
    padding-inline: 3.35rem;
  }
}

/* #endregion */