BUG 5108 this issue was fixed for IE

This commit is contained in:
Alvaro Campos
2011-04-19 11:09:22 -04:00
parent 47eada724a
commit 9d8f36a6a0
2 changed files with 19 additions and 5 deletions

View File

@@ -81,8 +81,10 @@ leimnud.Package.Public({
return this.input;
}.extend(this);
this.input.passed=function()
{
this.input.className="module_app_inputPassed___gray "+((this.input.className.split(' ')[1]) || '');
{ if ('\v'=='v') //verify if is internet explorer
this.input.className="module_app_inputPassed_ie___gray "+((this.input.className.split(' ')[1]) || '');
else
this.input.className="module_app_inputPassed___gray "+((this.input.className.split(' ')[1]) || '');
return this.input;
}.extend(this);
this.input.normal=function()
@@ -91,8 +93,10 @@ leimnud.Package.Public({
return this.input;
}.extend(this);
this.input.failed=function()
{
this.input.className="module_app_inputFailed___gray "+((this.input.className.split(' ')[1]) || '');
{ if ('\v'=='v') //verify if is internet explorer
this.input.className="module_app_inputFailed_ie___gray "+((this.input.className.split(' ')[1]) || '');
else
this.input.className="module_app_inputFailed___gray "+((this.input.className.split(' ')[1]) || '');
return this.input;
}.extend(this);
// this.parent.event.add(this.input,"mouseover",this.mouseover);

View File

@@ -1176,6 +1176,14 @@ INPUT {
color :#000000;
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
{
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=-1, OffY=-1,color=green) progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1,color=green);
}
.module_app_inputDisabled___gray
{
background-color:#f0f0f0;
@@ -1185,7 +1193,9 @@ INPUT {
/* Theme leimnud.module.app.input END */
.module_app_select___gray
{
font:normal 8pt Tahoma,Sans-serif,MiscFixed;
font:normal 8pt Tahoma,Sans-serif,MiscFi
border-top-style: double;
xed;
width:100%;
}