From ad1e4378232cb0d2158fdeb5e74edef0e3ac966f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 31 Mar 2023 11:49:16 +0200 Subject: [PATCH] Bug 33381: Correct styling in the ERM menu If you are on /erm/agreements you will notice that the "Agreements" tab on the menu is correctly highlighted. However if you are on /erm/agreements/add it won't. Test plan: Go to /cgi-bin/koha/erm/agreements/add and confirm that the "Agreements" tab in styled the same as when you are on /erm/agreements --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index 9b1534fdbdb..3ebf34ac51a 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -345,7 +345,8 @@ aside { &.active > a, a:hover, - a.current { + a.current, + a.router-link-active:not(:disabled) { background-color: #F3F4F4; text-decoration: none; color: $green-text-color; -- 2.25.1