Add animations for breadcrumbs on impact

refs #242
This commit is contained in:
Feu Mourek 2020-02-25 14:47:03 +01:00
parent a2309c4786
commit 37a429b3ec

View file

@ -661,6 +661,23 @@ td > a > .badges {
z-index: 2;
}
&.impact {
.breadcrumb li:not(:last-of-type) a:after {
.transition(border-left-color 2s 1s linear !important);
border-left-color: @gray-lighter !important;
}
.breadcrumb li:not(:last-of-type) a:before {
.transition(border-left-color 2s 1s linear !important);
border-left-color: @gray-light !important;
}
.breadcrumb li:not(:last-of-type) {
.transition(border-color 2s 1s linear !important);
border-color: @gray-light !important;
}
}
.tabs > .dropdown-nav-item > ul {
z-index: 100;
}