Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
340
Standards Compliance + WebDateChooser
posted

I'm having a small issue with IE 8 + Standards compliance as well as google chrome

The webdatechooser text box is offset from the drop down image (IE8 standards) or the box is smaller than the image (chrome)

is there a way to work around this?

IE8 Standards:

Chrome:

Parents
  • 24497
    Verified Answer
    posted

    Hi,

    Thank you for report. The reason for that appearance is enabled AppStyling, which uses border of INPUT instead of borders of TABLE.

    Visual design team was notified about that issue, however, I am not sure when it will be fixed.

    I suggest you to fix it by adjusting attributes in ig_datechooser.css used by your application. That file should be located at the ~/ig_res/Default or similar directory.

    If you open that file, then it will probably contain following

    .igdc_EditWithButtons
    {
    }

    .igdc_EditInContainer
    {
     background-color:Transparent;
     border:solid 1px #ABC1DE;
    }

    I suggest to move border from EditInContainer into EditWithButtons class and set border of INPUT to 0. Below is a fix:

    .igdc_EditWithButtons
    {
     border:solid 1px #ABC1DE;
    }

    .igdc_EditInContainer
    {
     background-color:Transparent;
     border:0px;
    }

     

Reply Children
No Data