From 37a429b3ec1ca3f8b8fa8f47ffeb064344fe9139 Mon Sep 17 00:00:00 2001 From: Feu Mourek Date: Tue, 25 Feb 2020 14:47:03 +0100 Subject: [PATCH] Add animations for breadcrumbs on impact refs #242 --- public/css/module.less | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/public/css/module.less b/public/css/module.less index 9a76faa..98c50f2 100644 --- a/public/css/module.less +++ b/public/css/module.less @@ -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; }