You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
440 B
PHP
27 lines
440 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Skin\Timeless;
|
|
|
|
use SkinTemplate;
|
|
|
|
/**
|
|
* SkinTemplate class for the Timeless skin
|
|
*
|
|
* @ingroup Skins
|
|
*/
|
|
class SkinTimeless extends SkinTemplate {
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function __construct(
|
|
array $options = []
|
|
) {
|
|
$out = $this->getOutput();
|
|
|
|
// Basic IE support without flexbox
|
|
$out->addStyle( 'Timeless/resources/IE9fixes.css', 'screen', 'IE' );
|
|
|
|
parent::__construct( $options );
|
|
}
|
|
}
|