NIHVIVO-646 Adding an existing person as an author on the add authors to publications form

This commit is contained in:
rjy7 2010-06-22 17:52:37 +00:00
parent ac6ccc2981
commit 98c027b00c
6 changed files with 172 additions and 61 deletions

View file

@ -16,7 +16,8 @@
/* Hide elements not used in non-JS version of form */
#showAddForm,
a.remove {
a.remove,
#selectedAuthor {
display: none;
}
@ -28,6 +29,10 @@ a.remove {
margin-left: 2em;
}
form h3 {
margin-bottom: .5em;
}
form a:link.cancel, form a:visited.cancel,
#authors a:link.remove, #authors a:visited.remove,
#showAddForm a:link.cancel, #showAddForm a:visited.cancel {
@ -67,3 +72,7 @@ form a:hover.cancel,
#content form p.inline span.hint {
margin-left: .5em;
}
#selectedAuthor {
clear: left;
}

View file

@ -103,3 +103,14 @@ option {
#content form textarea {
width: 30%;
}
/* jQuery UI autocomplete */
ul.ui-autocomplete {
font-size: .95em;
}
li.ui-menu-item a.ui-corner-all {
text-align: left;
padding-left: .25em;
}