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

(-)a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css (-7 / +9 lines)
Lines 125-135 input[type="checkbox"], input[type="radio"] { Link Here
125
    margin: 0;
125
    margin: 0;
126
}
126
}
127
127
128
/*Set width of filter input text boxes*/
129
input[name="borname"], input[id="searchmember_filter"], input[id="bookseller"], input[id="publisher"], input[id="callnumber"], input[id="title"], input[id="issn"], input[id="invoicenumber"], input[id="isbneanissn"], input[id="author"], input[id="publicationyear"], input[id="summaryfilter"], input[id="basketfilter"], input[id="basketgroupnamefilter"], input[id="orderfilter"] {
130
    width:140px;
131
}
132
133
label, .label {
128
label, .label {
134
    display: inline;
129
    display: inline;
135
    font-weight: normal;
130
    font-weight: normal;
Lines 633-641 div.yui-b fieldset.brief ol { Link Here
633
	padding : 0;
628
	padding : 0;
634
}
629
}
635
630
636
div.yui-b fieldset.brief select {
631
div.yui-b fieldset.brief select,
637
	width: 12em;
632
div.yui-b fieldset.brief input[type=text] {
633
    width: 100%;
638
}
634
}
635
639
div.yui-b fieldset.brief li.radio {
636
div.yui-b fieldset.brief li.radio {
640
	padding : .7em 0;
637
	padding : .7em 0;
641
}
638
}
Lines 660-665 div.yui-b fieldset.brief fieldset legend { Link Here
660
	font-size : 85%;
657
	font-size : 85%;
661
}
658
}
662
659
660
#yui-main div.yui-b fieldset.brief select,
661
#yui-main div.yui-b fieldset.brief input[type=text] {
662
    width: auto;
663
}
664
663
#tools_holidays fieldset.brief li.radio input,
665
#tools_holidays fieldset.brief li.radio input,
664
#tools_holidays fieldset.brief li.checkbox input{
666
#tools_holidays fieldset.brief li.checkbox input{
665
    margin-left: 0;
667
    margin-left: 0;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-2 / +2 lines)
Lines 202-208 function submitForm(form) { Link Here
202
                                        <li>
202
                                        <li>
203
                                            [% UNLESS (closedbg) %]
203
                                            [% UNLESS (closedbg) %]
204
                                                <label for="billingplace">Billing place:</label>
204
                                                <label for="billingplace">Billing place:</label>
205
                                                <select name="billingplace" id="billingplace" style="width:13em;">
205
                                                <select name="billingplace" id="billingplace">
206
                                                    <option value="">--</option>
206
                                                    <option value="">--</option>
207
                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => billingplace ) %]
207
                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => billingplace ) %]
208
                                                </select>
208
                                                </select>
Lines 214-220 function submitForm(form) { Link Here
214
                                        [% UNLESS (closedbg) %]
214
                                        [% UNLESS (closedbg) %]
215
                                            <li>
215
                                            <li>
216
                                                <label for="deliveryplace">Delivery place:</label>
216
                                                <label for="deliveryplace">Delivery place:</label>
217
                                                <select name="deliveryplace" id="deliveryplace" style="width:13em;">
217
                                                <select name="deliveryplace" id="deliveryplace">
218
                                                    <option value="">--</option>
218
                                                    <option value="">--</option>
219
                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => deliveryplace ) %]
219
                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => deliveryplace ) %]
220
                                                <select>
220
                                                <select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-2 / +1 lines)
Lines 401-407 Link Here
401
        <ol>
401
        <ol>
402
        <li>
402
        <li>
403
            <label for="filter_budgetbranch2">Library: </label>
403
            <label for="filter_budgetbranch2">Library: </label>
404
            <select name="filter_budgetbranch" id="filter_budgetbranch2" style="width:10em;">
404
            <select name="filter_budgetbranch" id="filter_budgetbranch2">
405
                <option value=""></option>
405
                <option value=""></option>
406
                [% PROCESS options_for_libraries libraries => Branches.all( selected => budget_branchcode, unfiltered => 1 ) %]
406
                [% PROCESS options_for_libraries libraries => Branches.all( selected => budget_branchcode, unfiltered => 1 ) %]
407
            </select>
407
            </select>
408
- 

Return to bug 20329