2017-05-12 09:54:12 -07:00
|
|
|
<template>
|
2017-11-08 01:26:42 -08:00
|
|
|
<span class="user-finder-container">
|
2017-09-10 10:46:42 -07:00
|
|
|
<i class="icon-spin4 user-finder-icon animate-spin-slow" v-if="loading" />
|
2018-12-03 09:12:43 -08:00
|
|
|
<a href="#" v-if="hidden" :title="$t('finder.find_user')" ><i class="icon-user-plus user-finder-icon" @click.prevent.stop="toggleHidden" /></a>
|
2017-09-10 10:46:42 -07:00
|
|
|
<span v-else>
|
2018-03-31 11:14:36 -07:00
|
|
|
<input class="user-finder-input" @keyup.enter="findUser(username)" v-model="username" :placeholder="$t('finder.find_user')" id="user-finder-input" type="text"/>
|
2017-11-08 02:55:10 -08:00
|
|
|
<i class="icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
|
2017-09-10 10:46:42 -07:00
|
|
|
</span>
|
2017-06-03 13:42:54 -07:00
|
|
|
</span>
|
2017-05-12 09:54:12 -07:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_finder.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-03-31 19:28:20 -07:00
|
|
|
@import '../../_variables.scss';
|
2017-11-08 01:26:42 -08:00
|
|
|
|
2018-03-31 19:28:20 -07:00
|
|
|
.user-finder-container {
|
2018-04-07 17:43:07 -07:00
|
|
|
height: 29px;
|
2018-04-07 09:30:27 -07:00
|
|
|
max-width: 100%;
|
2018-03-31 19:28:20 -07:00
|
|
|
}
|
2017-06-03 13:42:54 -07:00
|
|
|
|
2018-03-31 19:28:20 -07:00
|
|
|
.user-finder-input {
|
2018-04-07 09:30:27 -07:00
|
|
|
max-width: 80%;
|
2018-04-07 17:43:07 -07:00
|
|
|
vertical-align: middle;
|
2018-03-31 19:28:20 -07:00
|
|
|
}
|
2017-09-10 10:46:42 -07:00
|
|
|
|
2017-05-12 09:54:12 -07:00
|
|
|
</style>
|