From: Derk-Jan Hartman Date: Fri, 25 Jun 2010 14:40:45 +0000 (+0000) Subject: Make sure that simple skin has the shared CSS and print CSS. X-Git-Tag: 1.31.0-rc.0~36384 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=ccce9d0568597b1aa5b38602f85a8632c16f9648;p=lhc%2Fweb%2Fwiklou.git Make sure that simple skin has the shared CSS and print CSS. Simple was the last skin not to support the shared elements. --- diff --git a/skins/Simple.php b/skins/Simple.php index 416dc3f6f6..61564c2d6e 100644 --- a/skins/Simple.php +++ b/skins/Simple.php @@ -22,6 +22,8 @@ class SkinSimple extends SkinTemplate { $template = 'MonoBookTemplate', $useHeadElement = true; function setupSkinUserCss( OutputPage $out ){ + parent::setupSkinUserCss( $out ); + $out->addStyle( 'simple/main.css', 'screen' ); $out->addStyle( 'simple/rtl.css', '', '', 'rtl' ); }