diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-04-18 17:37:44 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-04-18 17:37:44 +0200 |
commit | 04591c37ea31cfdc8f636daa3db0fbd1f4255b42 (patch) | |
tree | d0c953bacffe2edda1886f40d49f06011821d900 /apps/files | |
parent | 9f9b89fcc7f90b6c36075316b70e2f7fa26cb2c3 (diff) | |
download | nextcloud-server-04591c37ea31cfdc8f636daa3db0fbd1f4255b42.tar.gz nextcloud-server-04591c37ea31cfdc8f636daa3db0fbd1f4255b42.zip |
Fix multiselect bar overlapping recommendations
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.scss | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 04987f8839e..8d01e26b964 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -262,11 +262,8 @@ table th.column-last, table td.column-last { } /* Multiselect bar */ -#filestable.multiselect { - top: 51px; -} table.multiselect thead { - position: fixed; + position: sticky; top: 94px; z-index: 55; -moz-box-sizing: border-box; @@ -275,7 +272,7 @@ table.multiselect thead { } table.multiselect thead th { - background-color: var(--color-main-background); + background-color: var(--color-main-background-translucent); font-weight: bold; border-bottom: 0; } @@ -783,7 +780,7 @@ table.dragshadow td.size { tr { display: block; border-bottom: 1px solid var(--color-border); - background-color: var(--color-main-background); + background-color: var(--color-main-background-translucent); th { width: auto; border: none; |