add hover effect to dropdown caret

This commit is contained in:
Mario Vavti
2018-06-01 13:30:02 +02:00
parent 6bf0f4225c
commit ec6d4f8ac3
3 changed files with 13 additions and 2 deletions

View File

@@ -1799,3 +1799,11 @@ dl.bb-dl > dd > li {
.cover-photo-review {
margin-bottom: 10px;
}
.hover-fx-hide {
opacity: 0;
}
.hover-fx-show:hover .hover-fx-hide {
opacity: 1;
}