owner filter works with autocomplete awesomeness

This commit is contained in:
Doug Bell 2010-08-25 18:38:42 -05:00
parent 95f51b61ce
commit d995ec19d1
3 changed files with 107 additions and 2 deletions

View file

@ -10,6 +10,13 @@ input.disabled {
color: #555;
}
.with_avatar {
background-position: 0 0;
background-repeat: no-repeat;
padding-left: 50px;
min-height: 50px;
}
#wrapper {
position: relative;
margin-left: 165px; /* move out of the adminbar's way */
@ -168,7 +175,9 @@ input.disabled {
display: block;
}
#searchFilters span {
#searchFilters li { height: 28px; } /* autocomplete is position: absolute, so pretend some height */
#searchFilters span.name {
display: block;
float: left;
width: 9%;
@ -181,12 +190,25 @@ input.disabled {
clear: both;
}
.filter_title input {
.filter_title input, .filter_ownerUserId div.autocomplete {
display: block;
float: left;
width: 89%;
}
#searchFilters .yui-ac-bd li {
height: 50px;
}
.autocomplete_value {
font-size: larger;
font-weight: bold;
}
.autocomplete_subtext {
font-size: smaller;
}
#wrapper .yui-content {
margin: 0; padding: 0;
}