Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
shuklina authored and podarok committed Apr 26, 2022
1 parent f79fc4f commit 776d3bc
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion openy_activity_finder.libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ openy_activity_finder_search:
- core/jquery.cookie

activity_finder_4:
version: 4.0.14
version: 4.0.15
js:
openy_af4_vue_app/dist/activity_finder_4.umd.min.js: { minified: true }
css:
Expand Down
2 changes: 1 addition & 1 deletion openy_af4_vue_app/dist/activity_finder_4.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openy_af4_vue_app/dist/activity_finder_4.umd.min.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion openy_af4_vue_app/src/components/Foldable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<span class="left">
<font-awesome-icon icon="chevron-down" />
<font-awesome-icon icon="chevron-up" />
<i class="fa fa-chevron-up" aria-hidden="true" />
<span class="title">
<strong>{{ label }}</strong>
</span>
Expand Down
1 change: 0 additions & 1 deletion openy_af4_vue_app/src/components/FoldableInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<span class="right">
<font-awesome-icon icon="chevron-down" />
<font-awesome-icon icon="chevron-up" />
<i class="fa fa-chevron-up" aria-hidden="true" />
</span>
</div>
<b-collapse :id="collapseId" role="tabpanel" class="foldable-content">
Expand Down
6 changes: 4 additions & 2 deletions openy_af4_vue_app/src/components/WizardBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="controls">
<span class="filters">
<a :class="{ 'no-filters': !filtersCount }" role="button" @click="showFiltersModal()">
<font-awesome-icon icon="filter" />
<font-awesome-icon icon="filter" />
{{ filtersCount | formatPlural('1 Filter', '@count Filters') }}
</a>
</span>
Expand Down Expand Up @@ -152,7 +152,9 @@ export default {
.filters {
font-size: 12px;
line-height: 18px;
.fa-filter {
margin-right: 8px;
}
.no-filters {
color: $af-dark-gray;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
</div>

<div v-if="item.price" class="item-detail price">
<font-awesome-icon icon="money-bill" />
<font-awesome-icon icon="money-bill" />
<span>
<span class="info">{{ item.price }}</span>
</span>
Expand Down
1 change: 1 addition & 0 deletions openy_af4_vue_app/src/components/steps/SelectLocations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export default {
filteredLocations[key] = this.locations[key]
}
}
if (!this.excludeByLocation.length) {
return this.locations
}
Expand Down
11 changes: 11 additions & 0 deletions openy_af4_vue_app/src/components/steps/SelectPath.vue
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,17 @@ export default {
margin-bottom: 0;
}
svg {
width: 50px;
text-align: center;
font-size: 20px;
@include media-breakpoint-up('lg') {
display: block;
margin: 30px auto;
font-size: 40px;
}
}
.fa {
width: 50px;
text-align: center;
Expand Down

0 comments on commit 776d3bc

Please sign in to comment.