Jump to content

Recommended Posts

Posted

Hi,

 

I needed to alter a buttonstyle on my form so I changed the class in OnBeforeRender:

 
function OnBeforerender(sender)
{
  sender.cls='btnblue';
  sender.overCls='btnblue-over';
}
 
And I added the below settings in the CustomCss of the Servermodule:
 
.x-btn {
  border-radius: 0px;
}
 
.x-btn-over {
  background: #777777;
}
 

.btnblue {

  background: rgb(3, 123, 189);
}
 
.btnblue-over {
  background: #77ABD8;
}

 

This works fine in Chrome and Firefox, but in Internet Explorer 10 the background color isn't changed.

Anyone know how to fix this?  

 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...