How do you remove the default Bootstrap 3 carousel control background gradients?

后端 未结 5 1823
北海茫月
北海茫月 2021-01-30 20:44

I\'m pretty sure this is the code I need to modify, but for some reason I can\'t get the gradients to disappear in IE. I want them completely gone!

.carousel-con         


        
5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-30 21:11

    There is specialized mixin for resetting IE gradient (Bootstrap 3).

    SASS:

    .carousel-control {
      &.left, &.right {
        background-image: none;
        @include reset-filter();
      }
    }
    

提交回复
热议问题