Testimonials - Read More

 avatar
LBautista
css
17 days ago
1.3 kB
3
Indexable
Never
/* START - Update ‘Read More’ button theme style -WB Lloyd*/
div.testimonials .data-container{
   /* Button theme */
   
    .expand-link-container .btn-more{
        color: #000;
        &:hover{
        color: #999!important;
        }
        &:before{
            background:#999!important;
        }
        &:hover:before{
            background:#000!important;
        }
    }
    /* Transition animation */
    
     .testimonials__item-outer{
        &:not(.expanded){
            .btn-more.btn-expand{
                opacity:1;
                z-index: 1;
            }
        }
        &.expanding{
            .btn-more.btn-expand{
                opacity:0;
            }
        }
        &.expanded{
            .btn-more.btn-collapse{
                opacity:1;
            }
        }
        &:not(.expanded){
            .btn-more.btn-collapse{
                opacity:0;
            }
        }
        &.expanding{
            .btn-more.btn-collapse{
                opacity:1;
            }
        }
        &.collapsing{
            .btn-more.btn-collapse{
                opacity:0;
            }
        }
        &.expanded{
            .btn-more.btn-collapse{
                opacity:1;
                z-index: 1;
            }
        }
    }
}
/* END */
Leave a Comment