お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。

多くの WindowsLinux のブラウザ

  • Ctrl を押しながら F5 を押す。

Mac における Safari

  • Shift を押しながら、更新ボタン をクリックする。

Mac における ChromeFirefox

  • Cmd Shift を押しながら R を押す。

詳細についてはWikipedia:キャッシュを消すをご覧ください。

/* ここに記述したCSSは、全てのミネルバスキン利用者に読み込まれます */
@media screen {
  html.skin-theme-clientpref-night .tmpl-language-icon {
	color: white !important;
  }
  /* [[phab:T360844]] */
  html.skin-theme-clientpref-night table:not(.infobox) [bgcolor] a,
  html.skin-theme-clientpref-night table:not(.infobox) th[style*="background"]:not([style*="transparent"]):not([style*="inherit"]) a,
  html.skin-theme-clientpref-night table:not(.infobox) td[style*="background"]:not([style*="transparent"]):not([style*="inherit"]) a,
  /* should not apply to th elements which have their own background. */
  html.skin-theme-clientpref-night table:not(.infobox) tr[style*="background"]:not([style*="transparent"]):not([style*="inherit"]) td a {
      color: #202122; /* replace with --color-base-fixed when token is available */
      text-decoration: underline;
  }

  html.skin-theme-clientpref-night .infobox a {
    color: var( --color-progressive ) !important;
  }
}

@media screen and (prefers-color-scheme: dark) {
  html.skin-theme-clientpref-os table:not(.infobox) [bgcolor] a,
  html.skin-theme-clientpref-os table:not(.infobox) th[style*="background"]:not([style*="transparent"]):not([style*="inherit"]) a,
  html.skin-theme-clientpref-os table:not(.infobox) td[style*="background"]:not([style*="transparent"]):not([style*="inherit"]) a,
  html.skin-theme-clientpref-os table:not(.infobox) tr[style*="background"]:not([style*="transparent"]):not([style*="inherit"]) td a {
    color: #202122; /* replace with --color-base-fixed when token is available */
    text-decoration: underline;
  }
  html.skin-theme-clientpref-os .infobox a {
    color: var( --color-progressive ) !important;
  }

  html.skin-theme-clientpref-os .tmpl-language-icon {
    color: white !important;

  }
}