Make the tick always white

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-08-24 14:29:34 +02:00
parent 0308d2f922
commit d5edd71ab2
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
3 changed files with 13 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -142,12 +142,12 @@ export default {
.background { .background {
width: 176px; width: 176px;
height: 96px; height: 96px;
margin: 8px; margin: 8px;
background-size: cover; background-size: cover;
background-position: center center; background-position: center center;
text-align: center; text-align: center;
border-radius: var(--border-radius-large); border-radius: var(--border-radius-large);
border: 2px solid var(--color-main-background); border: 2px solid var(--color-main-background);
overflow: hidden; overflow: hidden;
@ -166,8 +166,8 @@ export default {
&.active, &.active,
&:hover, &:hover,
&:focus { &:focus {
border: 2px solid var(--color-primary); border: 2px solid var(--color-primary);
} }
&.active:not(.icon-loading):after { &.active:not(.icon-loading):after {
@ -178,6 +178,10 @@ export default {
content: ''; content: '';
display: block; display: block;
height: 100%; height: 100%;
body.theme--dark & {
background-image: var(--icon-checkmark-000);
}
} }
} }
} }