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