Using angular js and bootstrap - And the on-hover when the div's height is increasing, transition ease is not working.
<div class="sidebar-list-item customHeight"><a ui-sref-active="active" ui-sref="home.dashboard.usermaster" class="sidebar-link text-muted"><span>Products</span></a>
<ul class="sidebar-menu list-unstyled border-left border-primary border-thick">
<li ng-repeat="product in prod" class="sidebar-list-item"><a ng-click="ctrl.getProduct(product)" class="sidebar-link text-muted pl-lg-3">{{product}}</a></li>
</ul>
</div>
customHeight class
.customHeight {
overflow: hidden;
height: 52px;
transition: height .5s ease-in-out 0.5s;
}
.customHeight:hover {
overflow: hidden;
height: auto;
}
Transition ease is not working with height: auto.