blob: 1e9531b2d63374de280a9247b900c8d82bcf4323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php
/**
* Elgg Search css
*
*/
?>
/**********************************
Search plugin
***********************************/
.elgg-search-header {
bottom: 15px;
width: 24%;
height: 23px;
position: absolute;
right: 0;
}
.elgg-search input[type=text] {
width: 230px;
}
.elgg-search input[type=submit] {
display: none;
}
.elgg-search input[type=text] {
height: 20px;
width: 97%;
margin-top: 13px;
border: 0;
background: #EEE url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat 99% -916px;
font-size: 1em;
}
.search-list li {
padding: 5px 0 0;
}
.search-heading-category {
margin-top: 20px;
color: #666666;
}
.search-highlight {
background-color: #FFF01C;
}
.search-highlight-color1 {
background-color: #FFF01C;
}
.search-highlight-color2 {
background-color: #BFF553;
}
.search-highlight-color3 {
background-color: #F062A4;
}
.search-highlight-color4 {
background-color: #ccc;
}
.search-highlight-color5 {
background-color: #4690d6;
}
|