yandere_fe/src/components/search_bar/search_bar.vue

80 lines
1.5 KiB
Vue
Raw Normal View History

2017-05-12 09:54:12 -07:00
<template>
<div
class="SearchBar"
:class="{ '-expanded': !hidden }"
>
<a
v-if="hidden"
href="#"
class="nav-icon"
:title="$t('nav.search')"
2020-10-20 12:54:43 -07:00
><FAIcon
2020-10-20 14:31:16 -07:00
fixed-width
class="fa-scale-110 fa-old-padding"
2020-10-20 14:31:16 -07:00
icon="search"
@click.prevent.stop="toggleHidden"
/></a>
<template v-else>
<input
id="search-bar-input"
ref="searchInput"
v-model="searchTerm"
class="search-bar-input"
:placeholder="$t('nav.search')"
type="text"
@keyup.enter="find(searchTerm)"
2019-07-05 00:17:44 -07:00
>
<button
class="btn search-button"
@click="find(searchTerm)"
2019-07-05 00:17:44 -07:00
>
<FAIcon
fixed-width
icon="search"
2020-10-20 14:31:16 -07:00
/>
</button>
<span>
<FAIcon
fixed-width
icon="times"
class="cancel-icon fa-scale-110 fa-old-padding"
@click.prevent.stop="toggleHidden"
2020-10-20 12:54:43 -07:00
/>
</span>
</template>
2018-12-05 04:01:56 -08:00
</div>
2017-05-12 09:54:12 -07:00
</template>
2019-07-15 09:42:27 -07:00
<script src="./search_bar.js"></script>
2017-05-12 09:54:12 -07:00
<style lang="scss">
@import '../../_variables.scss';
.SearchBar {
2018-12-02 21:03:11 -08:00
display: inline-flex;
align-items: baseline;
vertical-align: baseline;
2019-07-15 09:42:27 -07:00
justify-content: flex-end;
2018-12-02 21:03:11 -08:00
&.-expanded {
width: 100%;
}
2019-07-15 09:42:27 -07:00
.search-bar-input,
2018-12-02 21:03:11 -08:00
.search-button {
height: 29px;
}
2019-07-15 09:42:27 -07:00
.search-bar-input {
flex: 1 0 auto;
2018-12-02 21:03:11 -08:00
}
2020-10-20 12:54:43 -07:00
.cancel-icon {
2019-07-15 09:42:27 -07:00
cursor: pointer;
2020-10-20 12:54:43 -07:00
color: $fallback--text;
color: var(--btnTopBarText, $fallback--text);
2019-07-15 09:42:27 -07:00
}
}
2017-09-10 10:46:42 -07:00
2017-05-12 09:54:12 -07:00
</style>