diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-08-16 13:20:49 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-08-16 13:26:51 +0200 |
commit | e4720b605616868a5bb6698e41f42ff6246bcbdb (patch) | |
tree | fe9a4b10fe5cd0bdb6165df2579f29280338a7cc | |
parent | 6645c014e9412c563c0baed7f3c20acaa639235d (diff) | |
download | nextcloud-server-e4720b605616868a5bb6698e41f42ff6246bcbdb.tar.gz nextcloud-server-e4720b605616868a5bb6698e41f42ff6246bcbdb.zip |
and the user popover needs a higher z-index, to make it visible again
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | apps/updatenotification/lib/Settings/Admin.php | 2 | ||||
-rw-r--r-- | core/css/whatsnew.scss | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/updatenotification/lib/Settings/Admin.php b/apps/updatenotification/lib/Settings/Admin.php index 897b2555ad7..54adf558224 100644 --- a/apps/updatenotification/lib/Settings/Admin.php +++ b/apps/updatenotification/lib/Settings/Admin.php @@ -114,7 +114,7 @@ class Admin implements ISettings { return new TemplateResponse('updatenotification', 'admin', $params, ''); } - protected function filterChanges(array $changes) { + protected function filterChanges(array $changes): array { $filtered = []; if(isset($changes['changelogURL'])) { $filtered['changelogURL'] = $changes['changelogURL']; diff --git a/core/css/whatsnew.scss b/core/css/whatsnew.scss index e13cdf86256..99d99ded691 100644 --- a/core/css/whatsnew.scss +++ b/core/css/whatsnew.scss @@ -9,6 +9,7 @@ bottom: 35px !important; left: 15px !important; width: 270px; + z-index: 700; } .whatsNewPopover p { |