Merge pull request #27604 from nextcloud/bugfix/24918

Proper opacity on multiselect actions in files
This commit is contained in:
Pytal 2021-06-22 16:07:04 -07:00 committed by GitHub
commit d517b0f5b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -464,7 +464,7 @@ td.avatar {
}
}
tr .action:not(.permanent), .selectedActions a {
tr .action:not(.permanent), .selectedActions > a {
opacity: 0;
}
@ -476,8 +476,11 @@ tr {
}
}
.selectedActions a {
.selectedActions > a {
opacity: .5;
&:hover, &:focus {
opacity: 1;
}
}
tr .action {