Fix IconizedContextMenuCheckbox layout

This commit is contained in:
Michael Telatynski 2021-07-28 17:39:02 +01:00
parent 07b9d6b30b
commit cdf0d98c3f
2 changed files with 13 additions and 5 deletions

View file

@ -145,12 +145,17 @@ limitations under the License.
}
}
.mx_IconizedContextMenu_checked {
.mx_IconizedContextMenu_checked,
.mx_IconizedContextMenu_unchecked {
margin-left: 16px;
margin-right: -5px;
}
&::before {
mask-image: url('$(res)/img/element-icons/roomlist/checkmark.svg');
}
.mx_IconizedContextMenu_checked::before {
mask-image: url('$(res)/img/element-icons/roomlist/checkmark.svg');
}
.mx_IconizedContextMenu_unchecked::before {
content: unset;
}
}