引导轮播使用 .less 删除轮播控件上的渐变



如何在轮播中从轮播控件中删除渐变背景而不覆盖而是替换 .less 文件中?

只需覆盖相应的属性(请参阅 https://github.com/twbs/bootstrap/blob/v3.1.1/less/carousel.less#L81-L89),例如:

@import ".../bootstrap.less";
.carousel-control {
    &.left, &.right {
        background-image: none;
       .reset-filter(); // reset IE gradient filters
    }
}
对我来说

,这有效(我需要橙色):

 .carousel-control.left, .carousel-control.right {
  background: orange !important;
  filter: progid: none !important;
  filter:none !important;
  background-image:none;
  outline: 0;
  opacity: 1;
 }

最新更新