Getting rid of all the rounded corners in Twitter Bootstrap

后端 未结 16 2440
旧时难觅i
旧时难觅i 2020-12-22 17:07

I love Twitter Bootstrap 2.0 - I love how it\'s such a complete library... but I want to make a global modification for a very boxy-not-round site, which is to get rid of al

16条回答
  •  無奈伤痛
    2020-12-22 17:48

    I have create another css file and add the following code Not all element are included

    /* Flatten das boostrap */
    .well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid, .panel {
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        border-radius: 0px !important;
        border-collapse: collapse !important;
        background-image: none !important;
    }
    

提交回复
热议问题