diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-24 10:05:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 10:05:30 +0100 |
commit | a3780714fed21ac8adc0bf56955f39cff312e812 (patch) | |
tree | 44f7473ce1215fb3b0a3c68e0b2ec2eb55246899 /apps | |
parent | 22e3a74f900ef90a9a0fa7e9fd80d32c5d81e6a6 (diff) | |
parent | be6f3242caebd7004ec67748bc36a55ec467a223 (diff) | |
download | nextcloud-server-a3780714fed21ac8adc0bf56955f39cff312e812.tar.gz nextcloud-server-a3780714fed21ac8adc0bf56955f39cff312e812.zip |
Merge pull request #18913 from nextcloud/bugfix/fix_multiselect_actions
fix multiselect actions for files
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.scss | 36 |
1 files changed, 13 insertions, 23 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 49ccf87dc11..0d8b4824291 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -65,28 +65,24 @@ #emptycontent:not(.hidden) ~ & { display: none; } + // floating header + thead { + position: -webkit-sticky; + position: sticky; + @include position('sticky'); + // header + breadcrumbs + top: $header-height; + // under breadcrumbs, over file list + z-index: 60; + display: block; + background-color: var(--color-main-background-translucent); + } } #filestable.hidden { display: none; } -@media only screen and (min-width: $breakpoint-mobile + 1) { - #filestable { - // floating header - thead { - position: -webkit-sticky; - position: sticky; - // header + breadcrumbs - top: $header-height; - // under breadcrumbs, over file list - z-index: 55; - display: block; - background-color: var(--color-main-background-translucent); - } - } -} - /* fit app list view heights */ .app-files #app-content > .viewcontainer { min-height: 0%; @@ -289,14 +285,8 @@ table th.column-last, table td.column-last { max-width: 130px; } -/* Multiselect bar */ -table.multiselect thead { - @include position('sticky'); +#app-content-files thead { top: 94px; - z-index: 55; - -moz-box-sizing: border-box; - box-sizing: border-box; - left: $navigation-width; } table.multiselect thead th { |