Merge pull request #18913 from nextcloud/bugfix/fix_multiselect_actions

fix multiselect actions for files
This commit is contained in:
Roeland Jago Douma 2020-01-24 10:05:30 +01:00 committed by GitHub
commit a3780714fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 23 deletions

View File

@ -65,26 +65,22 @@
#emptycontent:not(.hidden) ~ & { #emptycontent:not(.hidden) ~ & {
display: none; display: none;
} }
}
#filestable.hidden {
display: none;
}
@media only screen and (min-width: $breakpoint-mobile + 1) {
#filestable {
// floating header // floating header
thead { thead {
position: -webkit-sticky; position: -webkit-sticky;
position: sticky; position: sticky;
@include position('sticky');
// header + breadcrumbs // header + breadcrumbs
top: $header-height; top: $header-height;
// under breadcrumbs, over file list // under breadcrumbs, over file list
z-index: 55; z-index: 60;
display: block; display: block;
background-color: var(--color-main-background-translucent); background-color: var(--color-main-background-translucent);
} }
} }
#filestable.hidden {
display: none;
} }
/* fit app list view heights */ /* fit app list view heights */
@ -289,14 +285,8 @@ table th.column-last, table td.column-last {
max-width: 130px; max-width: 130px;
} }
/* Multiselect bar */ #app-content-files thead {
table.multiselect thead {
@include position('sticky');
top: 94px; top: 94px;
z-index: 55;
-moz-box-sizing: border-box;
box-sizing: border-box;
left: $navigation-width;
} }
table.multiselect thead th { table.multiselect thead th {