Allow toggel on whole title, add toggle transition

This commit is contained in:
Maximilian Krög
2020-02-15 11:01:07 +01:00
parent ee8ec6f03a
commit bf2a7bd21a
3 changed files with 23 additions and 8 deletions
@@ -140,6 +140,19 @@ li {
margin-right: 3px;
flex-shrink: 0;
}
.navigation .item .glyphicon:before {
display: inline-block;
}
.navigation .item.toggle-manual .glyphicon:before {
transition: transform .1s;
}
.navigation .item-class.toggle-manual-show .glyphicon:before {
/* With 90deg the icon slightly slides left at transition end */
transform: rotate(89.9deg);
}
.navigation .item-module.toggle-manual-show .glyphicon:before {
transform: rotate(45deg);
}
.navigation li.perfect-match {
border: 5px solid orange;