diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-01-02 14:05:15 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-01-02 14:05:15 +0100 |
commit | 0b494b1f20255c3208dc7294eaa503d37ad8106b (patch) | |
tree | d866f821099125dda7ed320061e974860a7dbf2d /apps/files/css | |
parent | 99175c32e5305538e3ded6e80fbaa77cd8f7ebfb (diff) | |
download | nextcloud-server-0b494b1f20255c3208dc7294eaa503d37ad8106b.tar.gz nextcloud-server-0b494b1f20255c3208dc7294eaa503d37ad8106b.zip |
Fix file list visible behind the multiselect header
Some parts of the file list contents (file name and actions) had a
higher z-index than the file list multiselect header. That header is
fixed in place, so when the file list contents were scrolled and those
parts with a higher z-index overlapped the multiselect header they were
fully visible. Now the z-index for the multiselect header has a higher
value (the same used in the controls bar) to ensure that the contents
are shown behind the header.
Fixes #7540
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 9952203167c..00060ee7bd6 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -247,7 +247,7 @@ table th.column-last, table td.column-last { table.multiselect thead { position: fixed; top: 89px; - z-index: 10; + z-index: 55; -moz-box-sizing: border-box; box-sizing: border-box; left: 250px; /* sidebar */ |