better search user interface:

- facets as object properties
- composer updates
This commit is contained in:
Arno Kaimbacher 2019-10-15 13:52:52 +02:00
parent a95282e49e
commit 78a88081c2
8 changed files with 117 additions and 95 deletions

View file

@ -17,7 +17,7 @@
<label :for="item.value">
<span click: @click="activateItem(item)">{{ item.value }} ({{ item.count }})</span>
</label>-->
<a :class="Active ? 'disabled' : ''" @click.prevent="activateItem(item)">{{ item.value }} ({{ item.count }})</a>
<a :class="item.Active ? 'disabled' : ''" @click.prevent="activateItem(item)">{{ item.value }} ({{ item.count }})</a>
</li>
</ul>
<ul class="overflowing" v-if="overflowing == true">
@ -36,7 +36,10 @@ export default FacetList;
<style scoped>
/* local styles */
.disabled {
color: lightgrey;
/* background: #dddddd; */
/* color: #EBEBE4; */
color:#ffffff;
pointer-events: none;
text-decoration:line-through;
}
</style>