better search user interface:
- facets as object properties - composer updates
This commit is contained in:
parent
a95282e49e
commit
78a88081c2
8 changed files with 117 additions and 95 deletions
|
@ -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>
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue