BUG 8695 En la ventana que se despliega al aplicar otro logo... SOLVED
- Uno de los estilos que usan los paneles de Maborak tenia un atributo que cambia la posicion del status bar restandole 32px - Se elemino ese atributo de los estilos y se agrago una condicion en el modulo JS que dibuja el panel, restandole 16px solo cuando sea un panel con tabs
This commit is contained in:
@@ -12,7 +12,7 @@ leimnud.Package.Public({
|
||||
Version :"1.0.5"
|
||||
},
|
||||
content :function(options)
|
||||
{
|
||||
{
|
||||
this.uid = this.parent.tools.createUID();
|
||||
this.zIndex = 0;
|
||||
this.stepZindex = 5;
|
||||
@@ -544,7 +544,7 @@ leimnud.Package.Public({
|
||||
this.options.position.y = center.y;
|
||||
this.options.position.x = this.options.position.x || 0;
|
||||
this.options.position.y = this.options.position.y || 0;
|
||||
|
||||
|
||||
}
|
||||
this.options.position.x = (this.options.position.x<0)?0:this.options.position.x;
|
||||
this.options.position.y = (this.options.position.y<0)?0:this.options.position.y;
|
||||
@@ -1166,7 +1166,7 @@ leimnud.Package.Public({
|
||||
containerWindow:function()
|
||||
{
|
||||
this.options.size.w = this.options.size.w || 200;
|
||||
this.options.size.h = this.options.size.h || 200;
|
||||
this.options.size.h = this.options.size.h || 200;
|
||||
if(this.options.intoDOM)
|
||||
{
|
||||
var center = {
|
||||
@@ -1198,7 +1198,7 @@ leimnud.Package.Public({
|
||||
this.options.position.x = this.options.position.x || 0;
|
||||
this.options.position.y = this.options.position.y || 0;
|
||||
}
|
||||
|
||||
|
||||
if(this.options.strict_position)
|
||||
{
|
||||
this.options.position.x = (this.options.position.x<0)?0:this.options.position.x;
|
||||
@@ -1564,7 +1564,7 @@ leimnud.Package.Public({
|
||||
});
|
||||
//alert(this.spaceOutPanel().y)
|
||||
var tamH = this.elements.titleBar.offsetHeight+this.elements.statusBar.offsetHeight+this.elements.headerBar.offsetHeight;
|
||||
var heightContent = this.options.size.h-tamH;
|
||||
var heightContent = this.options.size.h-tamH-(this.tab.options ? 16 : 0);
|
||||
//var heightContent = this.options.size.h-(this.elements.statusBar.clientHeight+this.elements.headerBar.clientHeight);
|
||||
//alert(this.elements.titleBar.clientHeight+":"+this.elements.statusBar.offsetHeight+":"+this.elements.headerBar.clientHeight)
|
||||
this.parent.dom.setStyle(this.elements.content,this.setStyle.content || {});
|
||||
|
||||
@@ -230,8 +230,8 @@ INPUT {
|
||||
padding-bottom: 14px;
|
||||
overflow-x: scroll;
|
||||
/*overflow-y: visible;*/
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -339,7 +339,6 @@ INPUT {
|
||||
font:normal 8pt Tahoma,MiscFixed;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
top:-32px;
|
||||
/*background-color:white;*/
|
||||
background-color:transparent;
|
||||
min-height:25px;
|
||||
@@ -587,15 +586,15 @@ INPUT {
|
||||
font :normal 8pt sans-serif;
|
||||
}
|
||||
.module_ListBoxView
|
||||
{
|
||||
|
||||
{
|
||||
|
||||
color: white;
|
||||
background:#CCDDFF;
|
||||
padding:1px;
|
||||
border:1px solid #AAA;
|
||||
padding-left:3px;
|
||||
background-position:0px 0px;
|
||||
font :normal 8pt sans-serif;
|
||||
padding-left:3px;
|
||||
background-position:0px 0px;
|
||||
font :normal 8pt sans-serif;
|
||||
}
|
||||
.module_app_inputHover___gray
|
||||
{
|
||||
@@ -624,7 +623,7 @@ INPUT {
|
||||
font :normal 8pt sans-serif;
|
||||
}
|
||||
.module_app_inputFailed_ie___gray
|
||||
{
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=-1, OffY=-1,color=red) progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1,color=red);
|
||||
}
|
||||
.module_app_inputPassed_ie___gray
|
||||
@@ -769,7 +768,7 @@ div#toolbar
|
||||
.toolbar_container
|
||||
{
|
||||
width:100%;
|
||||
text-align:center;
|
||||
text-align:center;
|
||||
height:25px;
|
||||
}
|
||||
.toolbar_wrapper{
|
||||
@@ -821,11 +820,11 @@ div#toolbar
|
||||
}
|
||||
* html div#toolbar
|
||||
{
|
||||
position: absolute;
|
||||
position: absolute;
|
||||
}
|
||||
/* All done. */
|
||||
}
|
||||
|
||||
|
||||
#toolbar a:link,#toolbar a:visited
|
||||
{
|
||||
color:#666;
|
||||
|
||||
Reference in New Issue
Block a user