]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/opac/skin/default/xml/searchbar.xml
allow changing to fonts
[working/Evergreen.git] / Open-ILS / web / opac / skin / default / xml / searchbar.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE x [ <!ENTITY % ent SYSTEM "../../../locale/en-US/lang.dtd"> %ent; ] >
3
4 <!-- Searchbar for doing metarecord searches -->
5
6 <div id='searchbar'>
7
8         <!-- load my js -->
9         <script language='javascript' src='../js/search_bar.js'> </script>
10
11         <!--
12         <a onclick="scaleFont(prompt('scale fonts...'));">CLICK</a>
13         -->
14
15
16         <div id='searchbar_main' class='color_1'>
17
18                 <table>
19
20                         <tbody id='searchbar_table'>
21
22                                 <tr id='searchbar_main_row'>
23                 
24                                         <!-- Search query text box -->
25                                         <td align='left' class='searchbar_main_td'>
26                                                 <span class="searchbar_item">
27                                                         <input id='search_box' type='text' size='19'/>
28                                                 </span>
29                                         </td>
30                 
31
32                                         <!-- Selector for choosing the search type -->
33                                         <td align='left' class='searchbar_main_td'>
34                                                 <span class="searchbar_item">
35                                                         <select id='search_type_selector'>
36                                                                 <option value='title' selected='selected'>Title</option>
37                                                                 <option value='author'>Author</option>
38                                                                 <option value='subject'>Subject</option>
39                                                                 <option value='series'>Series</option>
40                                                                 <option value='keyword'>Keyword</option>
41                                                         </select>
42                                                 </span>
43         
44                                                 <!-- Submit Search Button -->
45                                                 <span class="searchbar_item" style='padding-left: 15px;'>
46                                                         <input type='button' id='search_submit' value='Go!' />
47                                                 </span>
48                                         </td>
49         
50                                 </tr>   
51                 
52                                 <!-- Row of extra search options -->
53                                 <tr id='searchbar_extra' class='hide_me'>
54                 
55                                         <!-- Search format selector -->
56                                         <td align='left' class='searchbar_extra_td'>
57                                                 <span class="searchbar_item">
58                                                         <select id='form_selector'>
59                                                                 <option value='all'>All Formats</option>
60                                                                 <option value='at'>Books</option>
61                                                                 <option value='at-d'>Large Print Books</option>
62                                                                 <option value='i'>Audiobooks</option>
63                                                                 <option value='g'>Video Recording</option>
64                                                                 <option value='j'>Music</option>
65                                                                 <option value='m'>Electronic Resources</option>
66                                                         </select>
67                                                 </span>
68                                         </td>
69                 
70                                         <!-- Search 'range' selector -->
71                                         <td  align='left' class='searchbar_extra_td'>
72                                                 <span class="searchbar_item">
73                                                         <select id='depth_selector'>
74                                                                 <option value='2' selected='selected'>In This Library</option>
75                                                                 <option value='1'>In This Region</option>
76                                                                 <option value='0'>In All PINES Libraries</option>
77                                                         </select>
78                                                 </span>
79                                         </td>
80                 
81                                 </tr>
82                 
83                         </tbody>
84                 </table>
85
86         </div>
87
88         <!-- Search location changer -->
89         <span class='searchbar_tag color_1'>
90                 <a id='search_location_tag_link' href='javascript:void(0);'>
91                         <span> Search Location </span>
92                 </a>
93         </span>
94         
95         <!-- Link for expanding/contracting the extra search options -->
96         <span class='searchbar_tag color_1'>
97                 <a id='search_tag_link' href='javascript:void(0);'>
98                         <span id='searchbar_tag_off'> More Options </span>
99                         <span id='searchbar_tag_on' class='hide_me'> Less Options </span>
100                 </a>
101         </span>
102
103
104 </div>
105
106
107
108
109
110