From f9980de6fcedb45a0d2c46f9daea7646eca96290 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 7 Jan 2016 15:25:04 +0100 Subject: Fix users list dropdown position after scroll When scrolling, the position calculation of the multiselect dropdown was wrong. Adding "position: relative" to the list container makes the button calculation relative to it instead of the whole page. In this case the dropdown is properly aligned with the field regardless of scrolling. --- settings/css/settings.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'settings') diff --git a/settings/css/settings.css b/settings/css/settings.css index 60ba805d3ca..1489a4318ee 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -139,6 +139,11 @@ td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidde td.password, td.quota, td.displayName { width:12em; cursor:pointer; } td.password>span, td.quota>span, rd.displayName>span { margin-right: 1.2em; color: #C7C7C7; } span.usersLastLoginTooltip { white-space: nowrap; } + +/* dropdowns will be relative to this element */ +#userlist { + position: relative; +} #userlist .mailAddress, #userlist .storageLocation, #userlist .userBackend, -- cgit v1.2.3