Skip to content

Commit 2962d9b

Browse files
authored
Merge pull request #24 from it-at-m/MUXDBS-94-change-color
Muxdbs 94 change color
2 parents 8bb8c1e + 3d13a6b commit 2962d9b

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

personalization-webcomponents/src/components/checklist-checked-circle.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ defineProps<{
1616
width: 20px;
1717
height: 20px;
1818
border-radius: 50%;
19-
border: 2px solid var(--color-brand-main-blue);
19+
border: 2px solid var(--color-neutrals-grey);
2020
}
2121
2222
.circle.checked {
23-
background-color: var(--color-brand-main-blue);
23+
background-color: #9ca8b3;
24+
border: 2px solid #9ca8b3;
2425
}
2526
</style>

personalization-webcomponents/src/components/checklistitem-listitem.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
:checked="!!checklistItem.checked"
66
>
77
</checklist-checked-circle>
8-
<div class="item-title">
8+
<div
9+
class="item-title"
10+
:class="{ 'item-title-checked': checklistItem.checked }"
11+
>
912
{{ checklistItem.title }}
1013
</div>
1114
</div>
@@ -26,4 +29,7 @@ defineProps<{
2629
font-family: "Open Sans", "sans-serif";
2730
font-size: 18px;
2831
}
32+
.item-title-checked {
33+
color: #7a8d9f;
34+
}
2935
</style>

0 commit comments

Comments
 (0)