Bug #23779 » 16046.diff
typo3/js/extjs/iframepanel.js (Arbeitskopie) | ||
---|---|---|
name: 'iframe',
|
||
iframe: null,
|
||
src: Ext.isIE && Ext.isSecure ? Ext.SSL_SECURE_URL : 'about:blank',
|
||
maskMessage: 'loading ...',
|
||
maskMessage: ' ',
|
||
doMask: true,
|
||
// component build
|
||
... | ... | |
onRender : function() {
|
||
TYPO3.iframePanel.superclass.onRender.apply(this, arguments);
|
||
this.maskMessage = TYPO3.LLL.core.loadingIndicator;
|
||
this.maskMessage = ' ';
|
||
this.iframe = Ext.isIE ? this.body.dom.contentWindow : window.frames[this.name];
|
||
this.body.dom[Ext.isIE ? 'onreadystatechange' : 'onload'] = this.loadHandler.createDelegate(this);
|
||
},
|
||
... | ... | |
this.body.dom.src = this.body.dom.src;
|
||
},
|
||
/** @private */
|
||
setMask: function() {
|
||
if (this.doMask) {
|
||
this.el.mask(this.maskMessage, 'x-mask-loading');
|
||
/** @private */
|
||
setMask: function() {
|
||
if (this.doMask) {
|
||
this.el.mask(this.maskMessage, 'x-mask-loading-message');
|
||
this.el.addClass('t3-mask-loading');
|
||
}
|
||
},
|
||
removeMask: function() {
|
||
if (this.doMask) {
|
||
},
|
||
removeMask: function() {
|
||
if (this.doMask) {
|
||
this.el.unmask();
|
||
}
|
||
}
|
||
}
|
||
});
|
||
Ext.reg('iframePanel', TYPO3.iframePanel);
|
typo3/sysext/t3skin/extjs/xtheme-t3skin.css (Arbeitskopie) | ||
---|---|---|
* Site: www.jadacosta.es
|
||
*/
|
||
/* the mask for dialogs */
|
||
.ext-el-mask {
|
||
background-color: #aaa;
|
||
-moz-opacity: 0.75;
|
||
opacity: .75;
|
||
filter: alpha(opacity=75);
|
||
background-color: #000000;
|
||
-moz-opacity: 0.9;
|
||
opacity: 0.9;
|
||
filter:alpha(opacity=90);
|
||
}
|
||
.ext-el-mask-msg {
|
||
border-color:#8f8f8f;
|
||
background-color:#EFEFF4;
|
||
background-image:url(images/box/tb-gray.gif);
|
||
/* mask while loading */
|
||
.t3-mask-loading .ext-el-mask {
|
||
background-color: #f8f8f8;
|
||
}
|
||
.ext-el-mask-msg div {
|
||
background-color: #EFEFF4;
|
||
border-color:#ccc;
|
||
color:#222;
|
||
font:normal 10px verdana, arial, tahoma, helvetica, sans-serif;
|
||
.x-mask-loading-div {
|
||
padding: 0;
|
||
}
|
||
.x-mask-loading div {
|
||
background-color:#fbfbfb;
|
||
background-image:url(images/grid/loading.gif);
|
||
.x-mask-loading-message.ext-el-mask-msg {
|
||
border: none;
|
||
background: none;
|
||
}
|
||
.x-mask-loading-message div {
|
||
background-color: transparent;
|
||
background-image: url("../images/spinner/big-f0f0f0.gif");
|
||
border: none;
|
||
height: 32px;
|
||
padding: 0;
|
||
width: 32px;
|
||
}
|
||
.x-item-disabled {
|
||
color: gray;
|
||
}
|