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

提供: ひつじ小屋別館2代目
移動先: 案内検索
(1版 をインポートしました)
(1版 をインポートしました)
 
(他の1人の利用者による、間の1版が非表示)
1行目: 1行目:
/*
+
/* ここに記述したCSSはベクター・スキンの利用者に影響します */
* Typograhy refresh
 
*/
 
  
/* Force lining numbers in headers (for fonts like Georgia) */
+
/* enlarge font-size for ja fonts */
h1,
+
#bodyContent { font-size: 94.4%; }
h2,
 
#firstHeading {
 
    -moz-font-feature-settings: "lnum";
 
    -webkit-font-feature-settings: "lnum";
 
    font-feature-settings: "lnum";
 
}
 
  
/* Fixes for Typography refresh, see also [[Bugzilla:64653]] */
+
/* for positioning top-right icons, like FA-star */
+
.topicon {
/* Consistent size for sub/sup */
+
position: absolute;
.mw-body sub,
+
z-index: 10;
.mw-body sup,
+
right: 0;
span.reference /* for Parsoid */ {
+
top: -3.5em;
    font-size: 80%;
+
display: block !important;
 
}
 
}
  
/* Margin for H1 on pages, excluding #firstHeading */
+
/* 地理座標の表示位置 */
.mw-body-content h1 {
+
#coordinates {
    margin-top: 1em;
+
position: absolute;
 +
right: 0;
 +
top: -1.2em;
 +
font-size: 85%;
 +
line-height: 1.2em;
 
}
 
}
  
/* lists line-height */
+
/* sup sub タグ使用時に行間の広がりを抑える */
.mw-body dd,
+
sup, sub {
.mw-body ol,
+
line-height: 1em;
.mw-body ul {
 
    line-height: 1.6;
 
 
}
 
}
  
/* Fix for changelist legend due to above fix (which will probably be merged at some point,
+
/* IE6対応: フォントサイズの em 指定がブラウザの文字サイズ設定で累積する問題の回避 */
  so this should be scoped in mediawiki.special.changeslist.legend.css) */
+
html, body {
.mw-body .mw-changeslist-legend dd {
+
font-size: 100%;
line-height: 1.3em;
 
 
}
 
}
 
/* End of Typography Refresh section */
 

2015年5月25日 (月) 01:08時点における最新版

/* ここに記述したCSSはベクター・スキンの利用者に影響します */

/* enlarge font-size for ja fonts */
#bodyContent { font-size: 94.4%; }

/* for positioning top-right icons, like FA-star */
.topicon {
	position: absolute; 
	z-index: 10; 
	right: 0;
	top: -3.5em;
	display: block !important;
}

/* 地理座標の表示位置 */
#coordinates {
	position: absolute;
	right: 0;
	top: -1.2em;
	font-size: 85%;
	line-height: 1.2em;
}

/* sup sub タグ使用時に行間の広がりを抑える */
sup, sub {
	line-height: 1em;
}

/* IE6対応: フォントサイズの em 指定がブラウザの文字サイズ設定で累積する問題の回避 */
html, body {
	font-size: 100%;
}