Skip to content

Commit

Permalink
Merge 26a7966 into 7405503
Browse files Browse the repository at this point in the history
  • Loading branch information
tcitworld committed Oct 4, 2016
2 parents 7405503 + 26a7966 commit bd6345d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion css/app/eventdialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,10 @@ button.delete:focus {
display: inline;
}

.dropdown-menu {
.dropdown-menu,
.attendeename {
width: 100%;
max-width: 470px;
}

.dropdown-menu li {
Expand All @@ -278,6 +280,9 @@ button.delete:focus {
.dropdown-menu li a {
display: block;
padding: 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.dropdown-menu li a:hover {
Expand Down
4 changes: 2 additions & 2 deletions templates/part.eventsattendees.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
*/
?>
<div class="advanced--fieldset" ng-hide="emailAddress === ''">
<input type="text" class="advanced--input" ng-model="nameofattendee"
<input type="text" class="advanced--input attendeename" ng-model="nameofattendee"
placeholder="<?php p($l->t('E-Mail address of attendee'))?>" name="nameofattendee" autocomplete="off"
uib-typeahead="contact.name for contact in search($viewValue)" typeahead-show-hint="true" typeahead-min-length="3"
uib-typeahead="contact as contact.name + ' (' + contact.email + ')' for contact in search($viewValue)" typeahead-show-hint="true" typeahead-min-length="3"
typeahead-on-select="selectFromTypeahead($item)" />
<button id="addmoreattendees" ng-click="add(nameofattendee)" class="btn event-button button" type="button">
<?php p($l->t('Add')); ?>
Expand Down

0 comments on commit bd6345d

Please sign in to comment.