Foreground
提供: sha.ngri.la
foregroundを、MediaWikiのSkinにインストールしてみました。
- Foreground http://foreground.thingelstad.com/wiki/Main_Page
- foreground https://github.com/thingles/foreground foreground
きっかけは、Googleのウェブマスターツールで
Google のシステムは、貴サイトの 29 ページをテストし、そのうちの 97% に重大なモバイル ユーザビリティ上の問題を検出しました。この 28 ページの問題の影響で、モバイル ユーザーは貴サイトを十分に表示して楽しむことができません。これらのページは Google 検索でモバイル フレンドリーとは見なされないため、スマートフォン ユーザーにはそのように表示、ランク付けされます。
というメッセージが表示されたことです。大したアクセス数もないんですけど気になります。
Install
/skins
で、
git clone https://github.com/thingles/foreground.git
LocalSettings.phpの変更
require_once "$IP/skins/foreground/foreground.php";
を追加。
$wgDefaultSkin
を
$wgDefaultSkin = "foreground";
に変更。
$wgForegroundFeatures = array( 'showActionsForAnon' => true, 'NavWrapperType' => 'divonly', 'showHelpUnderTools' => true, 'showRecentChangesUnderTools' => true, 'wikiName' => &$GLOBALS['wgSitename'], 'navbarIcon' => false, 'IeEdgeCode' => 1, 'showFooterIcons' => 0, 'addThisFollowPUBID' => '' );
を追加。 ユーザーにcssの編集を許可するのであれば、
# Allow User CSS, mostly for skin testing $wgAllowUserCss = true;
を追加。
cssの編集
MediaWiki:Foreground.cssでcssファイルを編集。
h3
本文の<h3>
を編集するには、
.ns-subject h3{clear:both;font-weight:bold;font-size:24px;padding-top:12px;}
.ns-subject
を前に付けないと編集内容が反映されない。
pre
pre { font-size:16px; font-family: "MS ゴシック","Osaka-等幅","Osaka-Mono",monospace,sans-serif; max-height:250px; overflow:auto; background-color:#eef; white-space:pre; }
white-space:pre;
にしておかないと、自動改行されてしまう。
textarea
textarea {font-size:16px; font-family:monospace;} #wpTextbox1 textarea {font-family: "MS ゴシック","Osaka-Mono",monospace,sans-serif;}
font-family: "MS ゴシック","Osaka-Mono",monospace,sans-serif;
は、効いていないような気がする。
目次の書式
list-style
の設定がないので、circle
で表示されていると思うから、list-style:none
を設定した。目次のところは、
<div id="toc" class="toc"><div id="toctitle"><h2>目次</h2></div>
なので、
#toc li{list-style:none;} .toc li{list-style:none;}