diff options
author | GretaD <gretadoci@gmail.com> | 2020-01-14 20:16:22 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-01-16 23:33:56 +0100 |
commit | 77cf9dfbe72ae7bf218b3ff5a36d14028e2b699a (patch) | |
tree | bb74b0e1283dda131695b8efd156ec27f2f6fdd0 /apps/settings/css | |
parent | c089cb21e7b7e385e6e5baa2dd7fa62eb1297d3d (diff) | |
download | nextcloud-server-77cf9dfbe72ae7bf218b3ff5a36d14028e2b699a.tar.gz nextcloud-server-77cf9dfbe72ae7bf218b3ff5a36d14028e2b699a.zip |
fix popover menu overlapping
Signed-off-by: GretaD <gretadoci@gmail.com>
Diffstat (limited to 'apps/settings/css')
-rw-r--r-- | apps/settings/css/settings.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index 1cc1c014bd7..f94b4a92575 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -597,8 +597,8 @@ span.usersLastLoginTooltip { } .userActions { position: sticky; - right: 50px; - z-index: 110; + right: 60px; + z-index: 20; } .userActions input { width: 44px; @@ -1371,6 +1371,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { grid-row-start: span 1; grid-gap: 3px; align-items: center; + z-index: 0; /* let's define the column until storage path, what follows will be manually defined */ grid-template-columns: 44px minmax($grid-col-min-width + 30px, 1fr) repeat(auto-fit, minmax($grid-col-min-width, 1fr)); @@ -1408,7 +1409,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { .userActions { min-width: 44px; position: sticky; - right: 50px; + right: 20px; z-index: 109; } .subtitle { |