Merge pull request #10448 from nextcloud/list-opacity-fix
Only lower opacity of the avatar if the checkbox is checked on the content-list
This commit is contained in:
commit
27d4ff8b4e
|
@ -1104,12 +1104,16 @@ $popovericon-size: 16px;
|
|||
width: 40px;
|
||||
display: flex;
|
||||
z-index: 50;
|
||||
+ .app-content-list-item-icon {
|
||||
}
|
||||
|
||||
.app-content-list-item-checkbox.checkbox {
|
||||
&:checked {
|
||||
// if checked, lower the opacity of the avatar
|
||||
+ label + .app-content-list-item-icon {
|
||||
opacity: .7;
|
||||
}
|
||||
}
|
||||
|
||||
.app-content-list-item-checkbox.checkbox + label {
|
||||
+ label {
|
||||
top: 14px;
|
||||
left: 7px;
|
||||
&::before {
|
||||
|
@ -1120,6 +1124,7 @@ $popovericon-size: 16px;
|
|||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.app-content-list-item-star {
|
||||
top: 10px;
|
||||
|
|
Loading…
Reference in New Issue