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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue (-2 / +4 lines)
Lines 16-22 Link Here
16
            <span v-html="confirmation"></span>
16
            <span v-html="confirmation"></span>
17
            <a
17
            <a
18
                v-if="accept"
18
                v-if="accept"
19
                id="close_modal"
19
                id="accept_modal"
20
                class="btn btn-primary btn-xs"
20
                class="btn btn-primary btn-xs"
21
                role="button"
21
                role="button"
22
                @click="accept"
22
                @click="accept"
Lines 82-87 export default { Link Here
82
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
82
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
83
    transition: all 0.3s ease;
83
    transition: all 0.3s ease;
84
}
84
}
85
.dialog .btn {
86
    margin-left: 0.8em;
87
}
85
#close_modal {
88
#close_modal {
86
    float: right;
89
    float: right;
87
    cursor: pointer;
90
    cursor: pointer;
88
- 

Return to bug 32991