61 lines
1.2 KiB
CSS
61 lines
1.2 KiB
CSS
/*
|
|
|
|
Jappix - An open social platform
|
|
This is the search tool CSS stylesheet for Jappix
|
|
|
|
-------------------------------------------------
|
|
|
|
License: AGPL
|
|
Author: Vanaryon
|
|
Last revision: 23/01/11
|
|
|
|
*/
|
|
|
|
.search {
|
|
position: relative;
|
|
}
|
|
|
|
.search input.suggested {
|
|
border-bottom: 1px solid white;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
-moz-border-radius-bottomright: 0;
|
|
-moz-border-radius-bottomleft: 0;
|
|
-webkit-border-bottom-right-radius: 0;
|
|
-webkit-border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.search ul {
|
|
background-color: rgb(255,255,255);
|
|
background-color: rgba(255,255,255,0.9);
|
|
border-color: #e1a014;
|
|
border-style: solid;
|
|
border-width: 0 1px 1px 1px;
|
|
position: absolute;
|
|
z-index: 1;
|
|
padding: 3px 0;
|
|
list-style: none;
|
|
overflow: auto;
|
|
border-bottom-right-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
-moz-border-radius-bottomright: 3px;
|
|
-moz-border-radius-bottomleft: 3px;
|
|
-webkit-border-bottom-right-radius: 3px;
|
|
-webkit-border-bottom-left-radius: 3px;
|
|
}
|
|
|
|
.search ul li {
|
|
padding: 2px 6px;
|
|
color: #3d3d3d;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.search ul li:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.search ul li.hovered {
|
|
background-color: rgb(225,160,20);
|
|
background-color: rgba(225,160,20,0.3);
|
|
}
|