summaryrefslogtreecommitdiffstats
path: root/templates/addressBookList.html
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2017-09-25 18:49:39 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2017-09-25 18:49:39 +0200
commitfb3026b19cb6c304163665ed9c33b7be87416253 (patch)
tree0e64a18680ae510163a0010d1207ff9c754f20de /templates/addressBookList.html
parentd23a9aff63560e997a4f2eea8f96a83fc44c92e9 (diff)
Tooltip position fix
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'templates/addressBookList.html')
-rw-r--r--templates/addressBookList.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/addressBookList.html b/templates/addressBookList.html
index 3815ae39..7047795c 100644
--- a/templates/addressBookList.html
+++ b/templates/addressBookList.html
@@ -1,13 +1,13 @@
<i ng-show="ctrl.loading" style="display: block" class="icon-loading-small"></i>
<ul class="addressBookList">
<li ng-repeat="addressBook in ctrl.addressBooks" addressbook data="addressBook" list="ctrl.addressBooks"></li>
- <li>
+ <li class="newAddressBookContainer">
<form ng-submit="ctrl.createAddressBook()" name="newAddressBookForm">
<input id="newList" placeholder="{{ctrl.t.addressBookName}}" class="newAddressBookInput"
ng-model="ctrl.newAddressBookName" type="text" ng-minlength="1"
autocomplete="off" autocorrect="off" spellcheck="false" tooltip-enable="!newAddressBookForm.$pristine"
required ng-pattern="ctrl.addressBookRegex" tooltip-is-open="newAddressBookForm.$invalid && !newAddressBookForm.$error.required" tooltip-trigger="none"
- tooltip-placement="right" uib-tooltip="{{ctrl.t.regexError}}" tooltip-append-to-body="true"/>
+ tooltip-placement="right" uib-tooltip="{{ctrl.t.regexError}}" />
<input type="submit" value="" class="newAddressBookSubmit inline-button icon-confirm action pull-right"
ng-disabled="newAddressBookForm.$invalid || newAddressBookForm.$pristine" />
</form>