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

提供: ひつじ小屋別館2代目
移動先: 案内検索
(FA/GA用スタイルの除去: Special:PermaLink/52844605)
(1版 をインポートしました)
 
(3人の利用者による、間の4版が非表示)
14行目: 14行目:
  
 
/* 地理座標の表示位置 */
 
/* 地理座標の表示位置 */
#coordinates {
+
#coordinates {
    position: absolute;
+
position: absolute;
    right: 0;
+
right: 0;
    top: -1.2em;
+
top: -1.2em;
    font-size: 85%;
+
font-size: 85%;
    line-height: 1.2em;
+
line-height: 1.2em;
 
}
 
}
  
 
/* sup sub タグ使用時に行間の広がりを抑える */
 
/* sup sub タグ使用時に行間の広がりを抑える */
 
sup, sub {
 
sup, sub {
    line-height: 1em;
+
line-height: 1em;
 
}
 
}
  
 
/* IE6対応: フォントサイズの em 指定がブラウザの文字サイズ設定で累積する問題の回避 */
 
/* IE6対応: フォントサイズの em 指定がブラウザの文字サイズ設定で累積する問題の回避 */
 
html, body {
 
html, body {
  font-size: 100%;
+
font-size: 100%;
}
 
 
 
/* アカウント作成の画面で説明が右に浮動表示されるのを防止 */
 
#signupend {
 
  clear:left;
 
}
 
 
 
/* [[Wikipedia:井戸端/subj/現在のWikipediaのフォント]] を参考にした応急処置
 
* ガジェットが効かないログインページ、アカウント作成ページ、個人設定のみへの適用
 
* [[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年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%;
}