Merge pull request #36238 from nextcloud/backport/36223/stable25

[stable25] Allow interaction with encrypted folders
This commit is contained in:
Louis 2023-01-19 13:53:00 +01:00 committed by GitHub
commit 34b25b83d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -150,7 +150,7 @@
.files-filestable tbody tr[data-permissions="16"] td.filename .nametext .innernametext {
color: var(--color-text-maxcontrast);
}
.files-filestable tbody tr[data-e2eencrypted=true] {
.files-filestable tbody tr[data-e2eencrypted=true] .selection {
pointer-events: none;
}

View file

@ -93,7 +93,7 @@
}
// Deactivates the possiblility to checkmark or click on the encrypted folder
tr[data-e2eencrypted="true"] {
tr[data-e2eencrypted="true"] .selection {
pointer-events: none;
}
}

View file

@ -150,7 +150,7 @@
.files-filestable tbody tr[data-permissions="16"] td.filename .nametext .innernametext {
color: var(--color-text-maxcontrast);
}
.files-filestable tbody tr[data-e2eencrypted=true] {
.files-filestable tbody tr[data-e2eencrypted=true] .selection {
pointer-events: none;
}