diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-08-27 18:08:45 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-08-27 18:08:45 +0200 |
commit | 8824af324d1d63817a1df305d12bd103331c3f68 (patch) | |
tree | 088ae5604c63b3b390de73d3840c7d82d2b0545e /apps/files/css | |
parent | 148e9cacb0d046d41896d3d5dab0b1a90bd1421b (diff) | |
download | nextcloud-server-8824af324d1d63817a1df305d12bd103331c3f68.tar.gz nextcloud-server-8824af324d1d63817a1df305d12bd103331c3f68.zip |
Increase z-index of drag shadow for files
The drag shadow is a sibling of "#content" so its z-index must be higher
than the z-index of the content children (navigation bar, app content
and app sidebar) to appear in front of them.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 47120ede7a0..9929855212a 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -612,7 +612,7 @@ table tr.summary td { table.dragshadow { width:auto; - z-index: 100; + z-index: 2000; } table.dragshadow td.filename { padding-left:60px; |