diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-04-18 21:16:20 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-04-18 21:16:20 +0200 |
commit | 83210d72b99dbd50667d29078086c300cf86e999 (patch) | |
tree | fd272418f2d04fdb001c5f97f8ac861aea3e382e /apps/files/css | |
parent | 9b0c6d9efbb4eea57e3353e95f9f876ba17783b1 (diff) | |
download | nextcloud-server-83210d72b99dbd50667d29078086c300cf86e999.tar.gz nextcloud-server-83210d72b99dbd50667d29078086c300cf86e999.zip |
Use sticky position include for Safari support
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index d06c9f5c55c..a5e28ff38da 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -263,8 +263,7 @@ table th.column-last, table td.column-last { /* Multiselect bar */ table.multiselect thead { - position: -webkit-sticky; // Safari support - position: sticky; + @include position('sticky'); top: 94px; z-index: 55; -moz-box-sizing: border-box; |