Change arrow colors in Bootstraps carousel

后端 未结 13 2062
[愿得一人]
[愿得一人] 2020-12-12 19:25

I\'m obviously missing something stupidly simple here. I have images with a white background so I want to be able to edit the arrows on the Bootstraps Carousel so they are v

13条回答
  •  一整个雨季
    2020-12-12 20:09

    a little example that works for me

        .carousel-control-prev,
        .carousel-control-next{
            height: 50px;
            width: 50px;
            outline: $color-white;
            background-size: 100%, 100%;
            border-radius: 50%;
            border: 1px solid $color-white;
            background-color: $color-white;
        }
    
        .carousel-control-prev-icon { 
            background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009be1' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); 
            width: 30px;
            height: 48px;
        }
        .carousel-control-next-icon { 
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009be1' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
            width: 30px;
            height: 48px;
        }
    

提交回复
热议问题