View | Details | Raw Unified | Return to bug 33381
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue (-2 / +6 lines)
Lines 241-248 textarea { Link Here
241
.flatpickr-input {
241
.flatpickr-input {
242
    width: 30%;
242
    width: 30%;
243
}
243
}
244
244
#navmenulist ul li a.current.disabled {
245
#navmenulist ul li a.disabled {
245
    background-color: inherit;
246
    border-left: 5px solid #e6e6e6;
247
}
248
#navmenulist ul li a.disabled,
249
#navmenulist ul li a.current.disabled {
246
    color: #666;
250
    color: #666;
247
    pointer-events: none;
251
    pointer-events: none;
248
    font-weight: 700;
252
    font-weight: 700;
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts (-2 / +1 lines)
Lines 21-27 import { routes } from "../routes/erm"; Link Here
21
21
22
const router = createRouter({
22
const router = createRouter({
23
    history: createWebHistory(),
23
    history: createWebHistory(),
24
    linkExactActiveClass: "current",
24
    linkActiveClass: "current",
25
    routes,
25
    routes,
26
});
26
});
27
27
28
- 

Return to bug 33381