diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-27 13:34:29 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-09-27 13:34:29 +0200 |
commit | 291e3d331f0b5665892c5bfdcb81c4d3924c51ae (patch) | |
tree | 3e91e3f040974cc8797e2081e7c4228336d0702d | |
parent | d4f15185332a679771e2e59a0505954f22f7dea9 (diff) | |
download | nextcloud-server-291e3d331f0b5665892c5bfdcb81c4d3924c51ae.tar.gz nextcloud-server-291e3d331f0b5665892c5bfdcb81c4d3924c51ae.zip |
No js for popover positionning
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | settings/css/settings.scss | 2 | ||||
-rw-r--r-- | settings/js/federationscopemenu.js | 10 |
2 files changed, 1 insertions, 11 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index c3b1243f87e..509d867baf9 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -219,7 +219,7 @@ input { .federationScopeMenu { top: 44px; - margin: -5px 5px 0; + margin-right: calc(-50% + 30px); /* half - the triangle icon width - borders */ &.bubble::after { right: 50%; transform: translate(50%, 0); diff --git a/settings/js/federationscopemenu.js b/settings/js/federationscopemenu.js index a9f41831b94..467ca48f62d 100644 --- a/settings/js/federationscopemenu.js +++ b/settings/js/federationscopemenu.js @@ -137,16 +137,6 @@ this.$el.removeClass('hidden'); OC.showMenu(null, this.$el); - - //Set the menuwidth - var menuWidth = this.$el.width(); - this.$el.css('width', menuWidth); - - //Calculate menu position - var l = offsetIcon.left - offsetHeading.left; - l = l - (menuWidth / 2) + ($el.outerWidth()/2); - this.$el.css('left', l); - } }); |