Buttons and Pagination Theming

Design Template: Producer
 avatar
Jfelizardo
plain_text
a month ago
1.2 kB
1
Indexable
Never
CSS Color Theming
/*START - For light background - */
div.type-selector__group label.type-selector__label.lp-btn.lp-btn--outline.lp-btn--dark{
    border-color: #670038;
    background-color: transparent;
    color: #670038;
    &:hover{
        border-color: #670038;
        background-color: #670038;
        color: #fff;
    }
}
div.custom-select button.custom-select-toggle.is-placeholder {
    color: #000;
    border-color: #000;
    &:after{
        border-color:#000;
    }
}
button.slick-arrow{
    border-color: #670038;
    background-color: transparent;
    &:before{
        color:#670038;
    }
    &:hover{
        background-color: #670038;
        border-color: #670038;
        &:before{
        color:#fff;
        }
    }
}
div.redesign{
    .calendar__slide.selected .calendar__item {
        border-color: #670038;
        background-color: #670038;
        color:#fff;
    }
}

/*hover select*/
div.custom-select-content{
    background-color: #fff!important;
    button.custom-select-item{
        color:#000!important;
        &:hover{
            background-color:#670038!important;
            color: #fff!important;
        }
    }
}
/*END- For light background - */
Leave a Comment