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

(-)a/koha-tmpl/opac-tmpl/prog/en/css/opac.css (+6 lines)
Lines 784-789 body#advsearch #listsmenulink { Link Here
784
	margin : .2em .3em 0 0;
784
	margin : .2em .3em 0 0;
785
}
785
}
786
786
787
#masthead_search,
788
#select_library {
789
	max-width: 10em;
790
	width: 10em;
791
}
792
787
793
788
#search-facets ul {
794
#search-facets ul {
789
	margin : 0;
795
	margin : 0;
(-)a/koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc (-3 / +2 lines)
Lines 35-41 Link Here
35
	[% END %]
35
	[% END %]
36
    </label>
36
    </label>
37
37
38
	<select name="idx" id="masthead_search" class="left" style="max-width:10em;width:10em;">
38
	<select name="idx" id="masthead_search" class="left">
39
	[% IF ( ms_kw ) %]
39
	[% IF ( ms_kw ) %]
40
        <option selected="selected" value="">Library Catalog</option>
40
        <option selected="selected" value="">Library Catalog</option>
41
		[% ELSE %]
41
		[% ELSE %]
Lines 77-83 Link Here
77
        <input type="text" id = "transl1" name="q" class="left" style="width: 35%; font-size: 111%;"/><div id="translControl"></div>
77
        <input type="text" id = "transl1" name="q" class="left" style="width: 35%; font-size: 111%;"/><div id="translControl"></div>
78
[% END %]
78
[% END %]
79
   [% IF ( OpacAddMastheadLibraryPulldown ) %]
79
   [% IF ( OpacAddMastheadLibraryPulldown ) %]
80
      <select name="limit" id="masthead_search" class="left" style="max-width:10em;width:10em;">
80
      <select name="limit" id="select_library" class="left">
81
         <option value="">All Libraries</option>
81
         <option value="">All Libraries</option>
82
         [% FOREACH BranchesLoo IN BranchesLoop %]
82
         [% FOREACH BranchesLoo IN BranchesLoop %]
83
            [% IF ( BranchesLoo.selected ) %]<option select="selected" value="branch:[% BranchesLoo.value %]">[% BranchesLoo.branchname %]</option>
83
            [% IF ( BranchesLoo.selected ) %]<option select="selected" value="branch:[% BranchesLoo.value %]">[% BranchesLoo.branchname %]</option>
84
- 

Return to bug 7043