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.
/* CSS placed here will be applied to all skins */

/* Cf. MediaWiki:Group-user.css */
.user-show {
  display: none;
}


/*
 * Article body
 */

/* Makes images responsive. */
.mw-body-content img {
  height: auto;
  max-width: 100%;
}


/*
 * Header logo
 */

/* Makes non-transparent. */
.minerva-header .branding-box {
  opacity: unset;
}

/* Prevents overlap in search box in landscape. */
@media screen and (min-width: 720px) {
  .minerva-header .branding-box {
    margin-right: 19px;
    min-width: unset;
  }
}


/*
 * Discussion
 */

/* Hides tabs at top to hide "Discussion". */
.minerva__tab-container {
  display: none;
}

/* Hides buttons at bottom to hide "Discussion". */
#page-secondary-actions {
  display: none;
}

/* Hides the bell icon in top right. */
.minerva-user-notifications {
  display: none;
}

/* Hides "Talk" from the top right menu. */
.toggle-list-item:has(.menu__item--mytalk) {
  display: none;
}

/* Hides "Community portal" from the left sidebar. */
li:has(.menu__item--speechBubbles) {
  display: none;
}


/*
 * Special:RecentChanges
 */

/* Hides the "unfortunately, grouping results by page is not available on mobile" warning. */
.page-Special_RecentChanges .mw-message-box-warning {
  display: none;
}