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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss (+24 lines)
Lines 1-6 Link Here
1
fieldset {
1
fieldset {
2
    @include card;
2
    @include card;
3
3
4
    .v-select,
5
    select,
6
    textarea,
7
    input{
8
        &:not([type="submit"]):not([type="search"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]) {
9
            border-color: rgba(60, 60, 60, 0.26);
10
            border-width: 1px;
11
            border-radius: 4px;
12
            min-width: 30%;
13
            line-height: 1.5;
14
        }
15
    }
16
17
    .v-select,
18
    select {
19
        display: inline-block;
20
        background-color: white;
21
        width: 30%;
22
    }
23
24
    .flatpickr-input {
25
        width: 30%;
26
    }
27
4
    legend {
28
    legend {
5
        border-bottom: 0 none;
29
        border-bottom: 0 none;
6
        color: #696969;
30
        color: #696969;
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue (-19 lines)
Lines 176-199 export default { Link Here
176
    padding-left: 2em;
176
    padding-left: 2em;
177
    font-size: 100%;
177
    font-size: 100%;
178
}
178
}
179
180
form .v-select {
181
    display: inline-block;
182
    background-color: white;
183
    width: 30%;
184
}
185
186
.v-select,
187
input:not([type="submit"]):not([type="search"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
188
textarea {
189
    border-color: rgba(60, 60, 60, 0.26);
190
    border-width: 1px;
191
    border-radius: 4px;
192
    min-width: 30%;
193
}
194
.flatpickr-input {
195
    width: 30%;
196
}
197
#navmenulist ul li a.current.disabled {
179
#navmenulist ul li a.current.disabled {
198
    background-color: inherit;
180
    background-color: inherit;
199
    border-left: 5px solid #e6e6e6;
181
    border-left: 5px solid #e6e6e6;
200
- 

Return to bug 36285