sharepopup: implement assigning labels while sharing

This commit is contained in:
Andrew Dolgov
2012-10-31 12:55:24 +04:00
parent 4021d61ada
commit 1b4d1a6b44
6 changed files with 91 additions and 6 deletions
+31
View File
@@ -151,3 +151,34 @@ body#sharepopup form {
body#sharepopup input {
width : 100%;
}
div.autocomplete {
position : absolute;
width : 250px;
background-color : white;
border :1px solid #778899;
margin : 0px;
padding : 0px;
z-index : 4;
}
div.autocomplete ul {
list-style-type : none;
margin : 0px;
padding : 0px;
font-size : 10px;
}
div.autocomplete ul li.selected {
background-color : #fff7d5;
}
div.autocomplete ul li {
list-style-type : none;
display : block;
margin : 0;
padding : 2px;
height : 32px;
cursor : pointer;
}