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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/ModuleDashboard.vue (+2 lines)
Lines 17-22 Link Here
17
                class="dragArea list-group w-full"
17
                class="dragArea list-group w-full"
18
                :list="selectedWidgetsLeft"
18
                :list="selectedWidgetsLeft"
19
                group="widgets"
19
                group="widgets"
20
                handle=".widget-drag-handle"
20
            >
21
            >
21
                <component
22
                <component
22
                    v-for="(widget, index) in selectedWidgetsLeft"
23
                    v-for="(widget, index) in selectedWidgetsLeft"
Lines 37-42 Link Here
37
                class="dragArea list-group w-full"
38
                class="dragArea list-group w-full"
38
                :list="selectedWidgetsRight"
39
                :list="selectedWidgetsRight"
39
                group="widgets"
40
                group="widgets"
41
                handle=".widget-drag-handle"
40
            >
42
            >
41
                <component
43
                <component
42
                    v-for="(widget, index) in selectedWidgetsRight"
44
                    v-for="(widget, index) in selectedWidgetsRight"
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/WidgetDashboardWrapper.vue (-2 / +8 lines)
Lines 4-11 Link Here
4
            <div class="row align-items-center">
4
            <div class="row align-items-center">
5
                <div class="col-md-6">
5
                <div class="col-md-6">
6
                    <h1 class="widget-title m-0">
6
                    <h1 class="widget-title m-0">
7
                        <i v-if="icon" :icon="icon" :class="icon"></i>
7
                        <i class="fas fa-grip-vertical widget-drag-handle"
8
                            >&nbsp;</i
9
                        >
8
                        {{ name }}
10
                        {{ name }}
11
                        <i v-if="icon" :icon="icon" :class="icon"></i>
9
                    </h1>
12
                    </h1>
10
                </div>
13
                </div>
11
                <div class="col-md-6 text-end">
14
                <div class="col-md-6 text-end">
Lines 233-236 export default { Link Here
233
    padding: 6px 12px;
236
    padding: 6px 12px;
234
    margin-bottom: 6px;
237
    margin-bottom: 6px;
235
}
238
}
239
240
.widget-drag-handle:hover {
241
    cursor: grab;
242
}
236
</style>
243
</style>
237
- 

Return to bug 39320