New changes: 3386c39 Make this.$.$iframe actually point to an iframe again bb7bbf5 ClippableElement: Use 'overflow-[xy]: scroll' rather than 'auto' 71176eb TextInputWidget: Don't mix inner and outer heights in calculations f1dd60e TextInputWidget: Work around Blink height miscalculation 954a369 WindowManager: Emit 'resize' event when a window is resized 3232d6f Try to stop user from tabbing outside of open dialog box 6c4baa3 Tool: Use FlaggedElement mixin to let tools be flagged Change-Id: Ia0a0b45e5f210314592733114a05583973b011d6
68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
/*!
|
||
* OOjs UI v0.1.0-pre (30b0407428)
|
||
* 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-09-30T23:08:05Z
|
||
*/
|
||
/**
|
||
* @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.isFramed && element.hasFlag ) {
|
||
if ( element.isFramed() ) {
|
||
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();
|