diff options
author | Sem <sembrestels@riseup.net> | 2012-08-14 22:59:23 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-14 22:59:23 +0200 |
commit | 405f0f8db9f72afed4c357a22c4dd99bea39c419 (patch) | |
tree | ce26d8007b1acd56ffc81919c58b591f22e489b0 /views/default/search | |
parent | 19f08612ecf97e509da1428b912584c05a3326c8 (diff) | |
download | saravea_theme-405f0f8db9f72afed4c357a22c4dd99bea39c419.tar.gz saravea_theme-405f0f8db9f72afed4c357a22c4dd99bea39c419.tar.bz2 |
Worked in Foockinho's proposal.
Diffstat (limited to 'views/default/search')
-rw-r--r-- | views/default/search/css.php | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/views/default/search/css.php b/views/default/search/css.php new file mode 100644 index 0000000..642e143 --- /dev/null +++ b/views/default/search/css.php @@ -0,0 +1,64 @@ +<?php +/** + * Elgg Search css + * + */ +?> + +/********************************** +Search plugin +***********************************/ +.elgg-search-header { + bottom: 5px; + 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] { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + + -moz-box-shadow: inset 0 0 5px #666; + -webkit-box-shadow: inset 0 0 5px #666; + box-shadow: inset 0 0 5px #666; + + border: 0; + color: #666; + font-size: 12px; + font-weight: bold; + padding: 4px 4px 4px 4px; + background: #EEE url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat 210px -916px; +} +.search-list li { + padding: 5px 0 0; +} +.search-heading-category { + margin-top: 20px; + color: #666666; +} + +.search-highlight { + background-color: #bbdaf7; +} +.search-highlight-color1 { + background-color: #bbdaf7; +} +.search-highlight-color2 { + background-color: #A0FFFF; +} +.search-highlight-color3 { + background-color: #FDFFC3; +} +.search-highlight-color4 { + background-color: #ccc; +} +.search-highlight-color5 { + background-color: #4690d6; +} |