Add a dropdown next to the entity search which shows all the user’s teams and robot accounts, and lets them create new ones on the fly
This commit is contained in:
parent
ecabcc3fc6
commit
9197a20a77
11 changed files with 223 additions and 53 deletions
|
@ -3,6 +3,39 @@
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.entity-search-element input {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.entity-search-element .twitter-typeahead {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.entity-search-element .dropdown {
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.dropdown-menu i.fa {
|
||||
margin-right: 6px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown-menu .new-action i.fa {
|
||||
atext-shadow: 2px 2px 7px #5cb85c, 2px 2px 7px #5cb85c;
|
||||
}
|
||||
|
||||
.dropdown-menu .new-action i.fa:after {
|
||||
content: "+";
|
||||
color: #5cb85c;
|
||||
position: absolute;
|
||||
left: -14px;
|
||||
top: -2px;
|
||||
font-weight: bold;
|
||||
font-size: 115%;
|
||||
}
|
||||
|
||||
#input-box {
|
||||
padding: 4px;
|
||||
font-size: 14px;
|
||||
|
|
Reference in a new issue