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

提供:エケペディア
ナビゲーションに移動 検索に移動
(折り畳みボックス・情報ボックスのCSS修正。テンプレート:要出典用のCSSをMediaWiki:Gadget-SiteOrigin.cssへ移動)
(モバイルビューで「 表・話・編・歴」を非表示に(幅が狭いので))
18行目: 18行目:
   margin: 0;
   margin: 0;
   width: 100% !important;
   width: 100% !important;
}
.navboxLinks {
  display: none;
}
.collapseButton {
  width: auto !important;
}
}


28行目: 34行目:
}
}


/*YouTube*/
/* YouTube */
.video-container {
.video-container {
position: relative;
  position: relative;
padding-bottom: 56.25%;
  padding-bottom: 56.25%;
padding-top: 30px;
  padding-top: 30px;
height: 0;
  height: 0;
overflow: hidden;
  overflow: hidden;
}
}
.video-container iframe {
.video-container iframe {
position: absolute;
  position: absolute;
top: 0;
  top: 0;
left: 0;
  left: 0;
width: 100%;
  width: 100%;
height: 100%;
  height: 100%;
}
}

2014年9月7日 (日) 17:20時点における版

/* ここに記述したCSSは携帯機器版サイトの利用者のみに影響します */

/* 情報ボックス */
.content table.infobox {
  /* .content table を上書き */
  display: table;
  width: auto !important;
}
.infobox table td {
  /* table.infobox td を上書き */
  border: 0;
}

/* 折り畳みボックス */
.content table.collapsible {
  /* .content table を上書き */
  display: table;
  margin: 0;
  width: 100% !important;
}
.navboxLinks {
  display: none;
}
.collapseButton {
  width: auto !important;
}

/* タブ */
#content div.tab-list ul {
  display: none;
}
.tab-content {
  clear: both;
}

/* YouTube */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}