pleroma-fe/src/components/user_finder/user_finder.vue

43 lines
1.2 KiB
Vue
Raw Normal View History

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" />
<a href="#" v-if="hidden" :title="$t('finder.find_user')"><i class="icon-user-plus user-finder-icon" @click.prevent.stop="toggleHidden" /></a>
2018-12-03 16:03:11 +11:00
<template v-else>
<input class="user-finder-input" @keyup.enter="findUser(username)" v-model="username" :placeholder="$t('finder.find_user')" id="user-finder-input" type="text"/>
2018-12-03 16:03:11 +11:00
<button class="btn search-button" @click="findUser(username)">
<i class="icon-search"/>
</button>
2018-12-19 05:26:14 +11:00
<i class="button-icon icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
2018-12-03 16:03:11 +11:00
</template>
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">
@import '../../_variables.scss';
.user-finder-container {
2018-04-08 02:30:27 +10:00
max-width: 100%;
2018-12-03 16:03:11 +11:00
display: inline-flex;
align-items: baseline;
vertical-align: baseline;
.user-finder-input,
.search-button {
height: 29px;
}
.user-finder-input {
2018-12-19 05:26:14 +11:00
// TODO: do this properly without a rough guesstimate of 2 icons + paddings
max-width: calc(100% - 30px - 30px - 20px);
2018-12-03 16:03:11 +11:00
}
2018-12-03 16:03:11 +11:00
.search-button {
margin-left: .5em;
margin-right: .5em;
}
}
2017-09-11 03:46:42 +10:00
2017-05-13 02:54:12 +10:00
</style>