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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOPackageAgreements.vue (-6 / +5 lines)
Lines 1-6 Link Here
1
<template>
1
<template>
2
    <transition name="modal">
2
    <transition name="modal">
3
        <div v-if="showModal" class="modal">
3
        <div v-if="showModal" class="add_agreement_modal">
4
            <AgreementsList :embedded="true" @select-agreement="addAgreement" />
4
            <AgreementsList :embedded="true" @select-agreement="addAgreement" />
5
            <input
5
            <input
6
                type="button"
6
                type="button"
Lines 130-136 export default { Link Here
130
}
130
}
131
</script>
131
</script>
132
<style>
132
<style>
133
.modal {
133
.add_agreement_modal {
134
    position: fixed;
134
    position: fixed;
135
    z-index: 9998;
135
    z-index: 9998;
136
    top: 0;
136
    top: 0;
Lines 151-163 export default { Link Here
151
</style>
151
</style>
152
152
153
<style>
153
<style>
154
.modal #agreements_list table {
154
.add_agreement_modal #agreements_list table {
155
    display: table;
155
    display: table;
156
}
156
}
157
.modal .filters label {
157
.add_agreement_modal .filters label {
158
    float: none !important;
158
    float: none !important;
159
}
159
}
160
.modal .filters input[type="checkbox"] {
160
.add_agreement_modal .filters input[type="checkbox"] {
161
    margin-left: 0 !important;
161
    margin-left: 0 !important;
162
}
162
}
163
</style>
163
</style>
164
- 

Return to bug 33491