fix checkmark for theme settings in dark mode

Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
szaimen 2022-10-14 17:30:11 +02:00 committed by backportbot-nextcloud[bot]
parent 83d85bd045
commit 78bf1b987d

View file

@ -256,7 +256,7 @@ export default {
&.active:not(.icon-loading) {
&:after {
background-image: var(--icon-checkmark-white);
background-image: var(--original-icon-checkmark-white);
background-repeat: no-repeat;
background-position: center;
background-size: 44px;
@ -266,7 +266,7 @@ export default {
}
&[data-color-bright]:after {
background-image: var(--icon-checkmark-dark);
background-image: var(--original-icon-checkmark-dark);
}
}
}