Changes for page ListWebSearch

Last modified by Ecaterina Valica on 2010/07/22 10:30

From version 294.1
edited by Ecaterina Valica
on 2009/03/22 11:59
Change comment: There is no comment for this version
To version 325.1
edited by Ecaterina Valica
on 2009/03/23 16:22
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -36,7 +36,7 @@
36 36  <form action="">
37 37   <div id="searchBar">
38 38   {pre}
39 - <input type="text" name="text" class="searchQuery" value="$msg.get("xe.search.bar.query")" size="50" title="$msg.get('xe.search.bar.query.title')"/>
39 + <input type="text" name="text" class="searchQuery" value="$msg.get("xe.search.bar.query")" title="$msg.get('xe.search.bar.query.title')"/>
40 40   #spaceselect($space $spaces $spacesText)
41 41   <input type="submit" class="searchButton" value="Search" title="$msg.get('xe.search.bar.go.title')"/>
42 42   <div class="searchHelp">$msg.get("xe.search.bar.help")</div>
... ... @@ -44,5 +44,6 @@
44 44   </div>
45 45  </form>
46 46  #includeInContext("XWiki.WebSearchCode")
47 +#includeInContext("XWiki.ListSuggestions")
47 47  #includeInContext("XWiki.ListResults")
48 48  </div>
XWiki.StyleSheetExtension[0]
Code
... ... @@ -20,6 +20,7 @@
20 20   border: 2px solid #CCCCCC;
21 21   color: #4d4d4d;
22 22   font-size:15px;
23 + width: 400px;
23 23  }
24 24  .searchButton{
25 25   background-color:#B3B3B3;
... ... @@ -59,6 +59,9 @@
59 59   color: #4D4D4D;
60 60   font-weight: bold;
61 61  }
63 +#sortFilter a#currentSort:focus {
64 + outline: dotted 1px #000;
65 +}
62 62  .paginationFilter {
63 63   color: #808080;
64 64   height: 100%;
... ... @@ -170,6 +170,9 @@
170 170  .itemDescription a:hover{
171 171   color: #5599ff;
172 172  }
177 +.itemDescription a:focus {
178 + outline: dotted 1px #000;
179 +}
173 173  .itemTitle a{
174 174   color: #4d4d4d;
175 175   font-weight: bold;
... ... @@ -183,6 +183,9 @@
183 183  .itemTitle a:focus {
184 184   outline: dotted 1px #000;
185 185  }
193 +a.itemAuthor:focus{
194 + outline: dotted 1px #000;
195 +}
186 186  .itemLocation{
187 187   color: #808080;
188 188   font-size:90%;
... ... @@ -299,4 +299,71 @@
299 299   height: 1px;
300 300   margin: 0 211px;
301 301  }
302 -
312 +div.suggestResults{
313 + position: absolute;
314 + padding: 11px 0px;
315 + margin: 0px;
316 + z-index: 100013;
317 + left: 5px;
318 + top: 27px;
319 + width: 422px;
320 +}
321 +div.suggestResults ul{
322 + list-style: none;
323 + list-style-position: outside;
324 + margin: 0;
325 + padding: 0;
326 + overflow: hidden;
327 + background-color: #fff;
328 + border: 2px solid #ccc;
329 + border-top: none;
330 +}
331 +div.suggestResults ul li{
332 + color: #ccc;
333 + padding: 0;
334 + margin: 0;
335 + text-align: left;
336 +}
337 +div.suggestResults ul li a{
338 + color: #4D4D4D;
339 + display: block;
340 + text-decoration: none;
341 + background-color: transparent;
342 + position: relative;
343 + padding: 0;
344 + width: 100%;
345 +}
346 +div.suggestResults ul li a:hover{
347 + background-color: #fff;
348 +}
349 +div.suggestResults ul li a span.suggestItem{
350 + display: block;
351 + padding: 0;
352 + margin: 0;
353 + font-weight: normal;
354 + clear: both;
355 +}
356 +div.suggestResults ul li a span.suggestItem span.suggestName{
357 + text-align: left;
358 + width: 60%;
359 + display:inline-block;
360 + font-weight: bold;
361 + padding-left: 6px;
362 + margin: 0px;
363 +}
364 +div.suggestResults ul li a:hover span.suggestItem span.suggestName{
365 + text-decoration: underline;
366 +}
367 +div.suggestResults ul li a span.suggestItem span.suggestLocation{
368 + text-align: right;
369 + color: #cccccc;
370 + width: 36%;
371 + vertical-align: top;
372 + display:inline-block;
373 + padding-right: 6px;
374 + margin: 0px;
375 +}
376 +div.suggestResults ul em{
377 + font-style: normal;
378 + color: #5599FF;
379 +}