Chosen.js styling not conforming to Bootstrap3 styles

后端 未结 5 1019
既然无缘
既然无缘 2021-01-30 11:08

Im using chosen.js v1.0 and am using it in my project with Bootstrap 3 but the styles of my select boxes are not conforming to bootstrap 3 styles at all.

Am I doing any

5条回答
  •  失恋的感觉
    2021-01-30 12:12

    If you want to change the select box sizes to be responsive you can use:

    [class*="col-"] .chosen-container {
        width:98%!important;
    }
    [class*="col-"] .chosen-container .chosen-search input[type="text"] {
        padding:2px 4%!important;
        width:90%!important;
        margin:5px 2%;
    }
    [class*="col-"] .chosen-container .chosen-drop {
        width: 100%!important;
    }
    

    Source : https://github.com/harvesthq/chosen/issues/1004

提交回复
热议问题