Changes for page ListWebSearch

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

From version 298.1
edited by Ecaterina Valica
on 2009/03/22 12:16
Change comment: There is no comment for this version
To version 308.1
edited by Ecaterina Valica
on 2009/03/23 15:43
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -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
... ... @@ -1,6 +1,6 @@
1 -a:focus {
2 - outline: dotted 1px #000;
3 -}
1 +body{
2 + position:relative;
3 + }
4 4  #search{
5 5   width: 100%;
6 6   background-color: #fff;
... ... @@ -23,6 +23,8 @@
23 23   border: 2px solid #CCCCCC;
24 24   color: #4d4d4d;
25 25   font-size:15px;
26 + width: 400px;
27 + height: 26px;
26 26  }
27 27  .searchButton{
28 28   background-color:#B3B3B3;
... ... @@ -62,6 +62,9 @@
62 62   color: #4D4D4D;
63 63   font-weight: bold;
64 64  }
67 +#sortFilter a#currentSort:focus {
68 + outline: dotted 1px #000;
69 +}
65 65  .paginationFilter {
66 66   color: #808080;
67 67   height: 100%;
... ... @@ -189,6 +189,9 @@
189 189  .itemTitle a:focus {
190 190   outline: dotted 1px #000;
191 191  }
197 +a.itemAuthor:focus{
198 + outline: dotted 1px #000;
199 +}
192 192  .itemLocation{
193 193   color: #808080;
194 194   font-size:90%;
... ... @@ -305,3 +305,64 @@
305 305   height: 1px;
306 306   margin: 0 211px;
307 307  }
316 +div.suggestResults{
317 + position: absolute;
318 + padding: 10px 0 0 0;
319 + z-index: 100013;
320 + left: 5px;
321 + top: 14px;
322 + width: 400px;
323 +}
324 +div.suggestResults ul{
325 + list-style: none;
326 + margin: 0 0 -4px 0;
327 + padding: 0;
328 + overflow: hidden;
329 + background-color: #fff;
330 + border: 2px solid #ccc;
331 +}
332 +div.suggestResults ul li{
333 + color: #ccc;
334 + padding: 0;
335 + margin: 0 4px 4px;
336 + text-align: left;
337 +}
338 +div.suggestResults ul li a{
339 + color: #4D4D4D;
340 + display: block;
341 + text-decoration: none;
342 + background-color: transparent;
343 + position: relative;
344 + padding: 0;
345 + width: 100%;
346 +}
347 +div.suggestResults ul li a:hover{
348 + background-color: #fff;
349 +}
350 +div.suggestResults ul li a span.suggestItem{
351 + display: block;
352 + padding: 3px 6px;
353 + font-weight: normal;
354 + width: 100%;
355 + clear: both;
356 +}
357 +div.suggestResults ul li a span.suggestItem span.suggestName{
358 + text-align: left;
359 + width: 60%;
360 + display:inline-block;
361 +}
362 +div.suggestResults ul li a:hover span.suggestItem span.suggestName{
363 + text-decoration: underline;
364 +}
365 +div.suggestResults ul li a span.suggestItem span.suggestlocation{
366 + text-align: right;
367 + color: #cccccc;
368 + width: 36%;
369 + vertical-align: top;
370 + display:inline-block;
371 + padding-right: 6px;
372 +}
373 +div.suggestResults ul em{
374 + font-style: normal;
375 + color: #5599FF;
376 +}