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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue (-7 / +5 lines)
Lines 215-223 export default { Link Here
215
</script>
215
</script>
216
216
217
<style>
217
<style>
218
#navmenulist a.router-link-active {
219
    font-weight: 700;
220
}
221
#menu ul ul,
218
#menu ul ul,
222
#navmenulist ul ul {
219
#navmenulist ul ul {
223
    padding-left: 2em;
220
    padding-left: 2em;
Lines 241-253 textarea { Link Here
241
.flatpickr-input {
238
.flatpickr-input {
242
    width: 30%;
239
    width: 30%;
243
}
240
}
244
241
#navmenulist ul li a.current.disabled {
242
    background-color: inherit;
243
    border-left: 5px solid #e6e6e6;
244
    color: #000;
245
}
245
#navmenulist ul li a.disabled {
246
#navmenulist ul li a.disabled {
246
    color: #666;
247
    color: #666;
247
    pointer-events: none;
248
    pointer-events: none;
248
    font-weight: 700;
249
    font-weight: 700;
249
}
250
}
250
#navmenulist ul li a.disabled.router-link-active {
251
    color: #000;
252
}
253
</style>
251
</style>
(-)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