2017-05-12 16:54:12 +00:00
|
|
|
<template>
|
2017-11-08 09:26:42 +00:00
|
|
|
<span class="user-finder-container">
|
2017-09-10 17:46:42 +00:00
|
|
|
<i class="icon-spin4 user-finder-icon animate-spin-slow" v-if="loading" />
|
2018-12-03 17:12:43 +00: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 17:46:42 +00:00
|
|
|
<span v-else>
|
2018-03-31 18:14:36 +00: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 10:55:10 +00:00
|
|
|
<i class="icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
|
2017-09-10 17:46:42 +00:00
|
|
|
</span>
|
2017-06-03 20:42:54 +00:00
|
|
|
</span>
|
2017-05-12 16:54:12 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_finder.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 02:28:20 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-11-08 09:26:42 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.user-finder-container {
|
2018-04-08 00:43:07 +00:00
|
|
|
height: 29px;
|
2018-04-07 16:30:27 +00:00
|
|
|
max-width: 100%;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-06-03 20:42:54 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.user-finder-input {
|
2018-04-07 16:30:27 +00:00
|
|
|
max-width: 80%;
|
2018-04-08 00:43:07 +00:00
|
|
|
vertical-align: middle;
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-09-10 17:46:42 +00:00
|
|
|
|
2017-05-12 16:54:12 +00:00
|
|
|
</style>
|