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

提供: ひつじ小屋別館2代目
移動先: 案内検索
(1版)
(Tightening selector)
1行目: 1行目:
/* ここに記述したCSSはベクター・スキンの利用者に影響します */
+
/*
 
+
* Typograhy refresh
/* enlarge font-size for ja fonts */
+
*/
#bodyContent { font-size: 94.4%; }
 
  
/* for positioning top-right icons, like FA-star */
+
/* Force lining numbers in headers (for fonts like Georgia) */
.topicon {
+
h1,
position: absolute;  
+
h2,
z-index: 10;  
+
#firstHeading {
right: 0;
+
    -moz-font-feature-settings: "lnum";
top: -3.5em;
+
    -webkit-font-feature-settings: "lnum";
display: block !important;
+
    font-feature-settings: "lnum";
 
}
 
}
  
/* 地理座標の表示位置 */
+
/* Fixes for Typography refresh, see also [[Bugzilla:64653]] */
#coordinates {  
+
   
    position: absolute;
+
/* Consistent size for sub/sup */
    right: 0;
+
.mw-body sub,
    top: -1.2em;
+
.mw-body sup,
     font-size: 85%;
+
span.reference /* for Parsoid */ {
    line-height: 1.2em;
+
     font-size: 80%;
 
}
 
}
  
/* sup sub タグ使用時に行間の広がりを抑える */
+
/* Margin for H1 on pages, excluding #firstHeading */
sup, sub {
+
.mw-body-content h1 {
     line-height: 1em;
+
     margin-top: 1em;
 
}
 
}
  
/* IE6対応: フォントサイズの em 指定がブラウザの文字サイズ設定で累積する問題の回避 */
+
/* lists line-height */
html, body {
+
.mw-body dd,
  font-size: 100%;
+
.mw-body ol,
 +
.mw-body ul {
 +
    line-height: 1.6;
 
}
 
}
  
/* アカウント作成の画面で説明が右に浮動表示されるのを防止 */
+
/* Fix for changelist legend due to above fix (which will probably be merged at some point,
#signupend {
+
  so this should be scoped in mediawiki.special.changeslist.legend.css) */
  clear:left;
+
.mw-body .mw-changeslist-legend dd {
 +
line-height: 1.3em;
 
}
 
}
  
/* [[Wikipedia:井戸端/subj/現在のWikipediaのフォント]] を参考にした応急処置
+
/* End of Typography Refresh section */
* ガジェットが効かないログインページ、アカウント作成ページ、個人設定のみへの適用
 
* [[MediaWiki:Gadget-VectorClassicFonts.css]] の状態を変える場合、ここの変更も必要です
 
*/
 
body.mw-special-Userlogin div#content #firstHeading,
 
body.mw-special-Userlogin div#mw-createacct-benefits-container h2,
 
body.mw-special-Userlogin div#mw-createacct-benefits-container h3,
 
body.mw-special-Preferences div#content #firstHeading,
 
body.mw-special-Preferences div#content h1 {
 
font-family: sans-serif;
 
}
 

2015年1月13日 (火) 07:06時点における版

/*
 * Typograhy refresh
 */

/* Force lining numbers in headers (for fonts like Georgia) */
h1,
h2,
#firstHeading {
    -moz-font-feature-settings: "lnum";
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}

/* Fixes for Typography refresh, see also [[Bugzilla:64653]] */
 
/* Consistent size for sub/sup */
.mw-body sub,
.mw-body sup,
span.reference /* for Parsoid */ {
    font-size: 80%;
}

/* Margin for H1 on pages, excluding #firstHeading */
.mw-body-content h1 {
    margin-top: 1em;
}

/* lists line-height */
.mw-body dd,
.mw-body ol,
.mw-body ul {
    line-height: 1.6;
}

/* Fix for changelist legend due to above fix (which will probably be merged at some point,
   so this should be scoped in mediawiki.special.changeslist.legend.css) */
.mw-body .mw-changeslist-legend dd {
	line-height: 1.3em;
}

/* End of Typography Refresh section */