station filters active indicator

This commit is contained in:
2023-09-02 18:53:23 +02:00
parent 1550849360
commit d4438fd215
3 changed files with 14 additions and 16 deletions
@@ -4,6 +4,7 @@
<button class="btn--filled btn--image" @click="toggleCard"> <button class="btn--filled btn--image" @click="toggleCard">
<img class="button_icon" :src="getIcon('filter2')" alt="filter icon" /> <img class="button_icon" :src="getIcon('filter2')" alt="filter icon" />
{{ $t('options.filters') }} [F] {{ $t('options.filters') }} [F]
<span class="active-indicator" v-if="!filterStore.areFiltersAtDefault"></span>
</button> </button>
<label for="scenery-search"> <label for="scenery-search">
@@ -176,6 +177,10 @@ export default defineComponent({
.filter((s) => s.name.toLocaleLowerCase().includes(this.chosenSearchScenery.toLocaleLowerCase())) .filter((s) => s.name.toLocaleLowerCase().includes(this.chosenSearchScenery.toLocaleLowerCase()))
.sort((s1, s2) => (s1.name > s2.name ? 1 : -1)); .sort((s1, s2) => (s1.name > s2.name ? 1 : -1));
}, },
currentOptionsActive() {
return true;
},
}, },
watch: { watch: {
@@ -442,16 +447,9 @@ export default defineComponent({
.section-inputs { .section-inputs {
display: grid; display: grid;
// flex-wrap: wrap;
grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-columns: repeat(3, minmax(0, 1fr));
// grid-template-rows: repeat(3, 1fr);
gap: 0.5em; gap: 0.5em;
margin: 1em 0; margin: 1em 0;
// @include smallScreen() {
// grid-template-columns: repeat(auto-fit, minmax(8em, 1fr));
// grid-template-rows: auto;
// }
} }
} }
-9
View File
@@ -11,15 +11,6 @@
gap: 0.5em; gap: 0.5em;
} }
.filter-button .active-indicator {
width: 7px;
height: 7px;
background-color: lightgreen;
border-radius: 50%;
margin-left: 10px;
}
h1.option-title { h1.option-title {
position: relative; position: relative;
font-size: 1.1em; font-size: 1.1em;
+9
View File
@@ -138,6 +138,15 @@ input {
padding: 0.35em 0; padding: 0.35em 0;
} }
.active-indicator {
width: 7px;
height: 7px;
background-color: lightgreen;
border-radius: 50%;
margin-left: 10px;
}
a { a {
display: inline-block; display: inline-block;