Skip to content

Commit ddd6943

Browse files
committed
ui: :deep(.p-togglebutton:hover)
1 parent bdee665 commit ddd6943

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ui/app/components/Kani.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ useHead({ title: "Verify Rust Std - Kani" });
9797
<MultiSelect v-model="selectedMods" :options="mod_names" :maxSelectedLabels="3" placeholder="select modules"
9898
optionLabel="name" optionValue="name" filter>
9999
<template #option="{ option }">
100-
<span class="inline-block w-10 text-right rounded-lg px-1 py-1" :style="{ background: color.green }">
100+
<span class="inline-block w-10 text-right rounded-lg px-1 my-2" :style="{ background: color.green }">
101101
{{ option.n }}
102102
</span>
103103
{{ option.name }}
@@ -156,4 +156,8 @@ useHead({ title: "Verify Rust Std - Kani" });
156156
.counts {
157157
color: #aaaaaa
158158
}
159+
160+
:deep(.p-togglebutton:hover) {
161+
background: var(--p-emerald-300) !important;
162+
}
159163
</style>

0 commit comments

Comments
 (0)