Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable16] Fix multiselect bar overlapping recommendations #15198

Merged
merged 3 commits into from Apr 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 3 additions & 6 deletions apps/files/css/files.scss
Expand Up @@ -262,11 +262,8 @@ table th.column-last, table td.column-last {
}

/* Multiselect bar */
#filestable.multiselect {
top: 51px;
}
table.multiselect thead {
position: fixed;
@include position('sticky');
top: 94px;
z-index: 55;
-moz-box-sizing: border-box;
Expand All @@ -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;
}
Expand Down Expand Up @@ -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;
Expand Down