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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/CirculationTriggers/TriggerContext.vue (-1 / +6 lines)
Lines 47-50 export default { Link Here
47
};
47
};
48
</script>
48
</script>
49
49
50
<style></style>
50
<style scoped>
51
table {
52
    margin: auto;
53
    width: fit-content;
54
}
55
</style>
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/CirculationTriggers/TriggersTable.vue (-2 / +6 lines)
Lines 1-6 Link Here
1
<template>
1
<template>
2
    <slot></slot>
2
    <slot></slot>
3
    <table>
3
    <table :class="{ centered: modal }">
4
        <thead>
4
        <thead>
5
            <th v-if="!modal" class="trigger_context">
5
            <th v-if="!modal" class="trigger_context">
6
                {{ $__("Library") }}
6
                {{ $__("Library") }}
Lines 354-357 th.trigger_context { Link Here
354
.border_right {
354
.border_right {
355
    border-right: solid 4px black;
355
    border-right: solid 4px black;
356
}
356
}
357
358
table.centered {
359
    margin: auto;
360
    width: fit-content;
361
}
357
</style>
362
</style>
358
- 

Return to bug 10190