Datetime picker transparent background out of the box?

后端 未结 6 1739
眼角桃花
眼角桃花 2021-02-07 04:45

This is out of the box mvc3 stock grade plain vanilla jquery behavior? Is this default styling behavior? How do I make it NOT transparent? Thx!



        
6条回答
  •  悲&欢浪女
    2021-02-07 05:11

    I was using a custom theme, so the above suggestion wasnt ideal...

    The fix was to add background color to this section

    /* DatePicker Container */
    .ui-datepicker {
        width: 216px;
        height: auto;
        margin: 5px auto 0;
        font: 9pt Arial, sans-serif;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
        background-color: #FFF;
    }
    

提交回复
热议问题