メニューを切り替える
Toggle preferences menu
個人設定を切り替える
ログインしていません
編集を行うと、IPアドレスが公開されます。

「MediaWiki:Common.css」の版間の差分

MediaWikiインターフェイスページ
編集の要約なし
編集の要約なし
1行目: 1行目:
/********* [[Template:Spoiler]] *********/
/********* [[Template:Spoiler]] *********/
.spoiler-content {
.spoiler-content {
   background-color: rgba(rgba(0, 0, 0, 0.3);
   background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.8);
   transition: all 0.3s;
   transition: all 0.3s;
   cursor: pointer;
   cursor: pointer;

2025年1月12日 (日) 04:16時点における版

/********* [[Template:Spoiler]] *********/
.spoiler-content {
  background-color: rgba(var(--wiki-content-dynamic-color--rgb), 0.8);
  transition: all 0.3s;
  cursor: pointer;
  overflow:auto;
}

.spoiler-content > * {
  pointer-events:none;
  opacity: 0;
  transition: all 0.3s;
}

.spoiler-content.show {
  background-color: transparent;
}

.spoiler-content.show > * {
  pointer-events:unset;
  opacity: 1;
}