New changes: be1f468 Localisation updates from https://translatewiki.net. de6d500 Localisation updates from https://translatewiki.net. 049b28f Localisation updates from https://translatewiki.net. a926d7d Fix a number of documentation syntax issues throughout the codebase df625c4 Use primary colours for progress bar d721cc1 Localisation updates from https://translatewiki.net. c3aa4e1 [BREAKING CHANGE] Apply font-size: 0.8em; to non-isolated windows too 140509d [BREAKING CHANGE] If no $overlay is specified, default to this.$element deccd11 Localisation updates from https://translatewiki.net. Change-Id: Idf1f1c047dd414edc8cb80a6187055fc811dc95e
68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
/*!
|
||
* OOjs UI v0.1.0-pre (deccd11549)
|
||
* https://www.mediawiki.org/wiki/OOjs_UI
|
||
*
|
||
* Copyright 2011–2014 OOjs Team and other contributors.
|
||
* Released under the MIT license
|
||
* http://oojs.mit-license.org
|
||
*
|
||
* Date: 2014-10-28T16:52:18Z
|
||
*/
|
||
/**
|
||
* @class
|
||
* @extends {OO.ui.Theme}
|
||
*
|
||
* @constructor
|
||
*/
|
||
OO.ui.MediaWikiTheme = function OoUiMediaWikiTheme() {
|
||
// Parent constructor
|
||
OO.ui.MediaWikiTheme.super.call( this );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.MediaWikiTheme, OO.ui.Theme );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.MediaWikiTheme.prototype.getElementClasses = function ( element ) {
|
||
// Parent method
|
||
var variant,
|
||
variants = {
|
||
invert: false,
|
||
primary: false,
|
||
constructive: false,
|
||
destructive: false
|
||
},
|
||
// Parent method
|
||
classes = OO.ui.MediaWikiTheme.super.prototype.getElementClasses.call( this, element );
|
||
|
||
if ( element.supports( [ 'isFramed', 'isDisabled', 'hasFlag' ] ) ) {
|
||
if ( element.isFramed() && !element.isDisabled() ) {
|
||
if (
|
||
element.hasFlag( 'primary' ) ||
|
||
element.hasFlag( 'constructive' ) ||
|
||
element.hasFlag( 'destructive' )
|
||
) {
|
||
variants.invert = true;
|
||
}
|
||
} else {
|
||
variants.primary = element.hasFlag( 'primary' );
|
||
variants.constructive = element.hasFlag( 'constructive' );
|
||
variants.destructive = element.hasFlag( 'destructive' );
|
||
}
|
||
}
|
||
|
||
for ( variant in variants ) {
|
||
classes[variants[variant] ? 'on' : 'off'].push( 'oo-ui-image-' + variant );
|
||
}
|
||
|
||
return classes;
|
||
};
|
||
|
||
/* Instantiation */
|
||
|
||
OO.ui.theme = new OO.ui.MediaWikiTheme();
|