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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue (-7 / +9 lines)
Lines 92-103 Link Here
92
                                />
92
                                />
93
                            </li>
93
                            </li>
94
                            <li>
94
                            <li>
95
                                <label
95
                                <label for="agreement_is_perpetual"
96
                                    for="agreement_is_perpetual"
97
                                    class="radio"
98
                                    >{{ $__("Is perpetual") }}:</label
96
                                    >{{ $__("Is perpetual") }}:</label
99
                                >
97
                                >
100
                                <label for="agreement_is_perpetual_yes">
98
                                <label
99
                                    class="radio"
100
                                    for="agreement_is_perpetual_yes"
101
                                    >{{ $__("Yes") }}:
101
                                    <input
102
                                    <input
102
                                        type="radio"
103
                                        type="radio"
103
                                        name="is_perpetual"
104
                                        name="is_perpetual"
Lines 105-113 Link Here
105
                                        :value="true"
106
                                        :value="true"
106
                                        v-model="agreement.is_perpetual"
107
                                        v-model="agreement.is_perpetual"
107
                                    />
108
                                    />
108
                                    {{ $__("Yes") }}:
109
                                </label>
109
                                </label>
110
                                <label for="agreement_is_perpetual_no">
110
                                <label
111
                                    class="radio"
112
                                    for="agreement_is_perpetual_no"
113
                                    >{{ $__("No") }}:
111
                                    <input
114
                                    <input
112
                                        type="radio"
115
                                        type="radio"
113
                                        name="is_perpetual"
116
                                        name="is_perpetual"
Lines 115-121 Link Here
115
                                        :value="false"
118
                                        :value="false"
116
                                        v-model="agreement.is_perpetual"
119
                                        v-model="agreement.is_perpetual"
117
                                    />
120
                                    />
118
                                    {{ $__("No") }}:
119
                                </label>
121
                                </label>
120
                            </li>
122
                            </li>
121
                            <li>
123
                            <li>
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue (-2 / +1 lines)
Lines 270-276 form .v-select { Link Here
270
}
270
}
271
271
272
.v-select,
272
.v-select,
273
input:not([type="submit"]):not([type="search"]):not([type="button"]):not([type="checkbox"]),
273
input:not([type="submit"]):not([type="search"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
274
textarea {
274
textarea {
275
    border-color: rgba(60, 60, 60, 0.26);
275
    border-color: rgba(60, 60, 60, 0.26);
276
    border-width: 1px;
276
    border-width: 1px;
277
- 

Return to bug 33355