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

45 lines
1.3 KiB
Vue
Raw Normal View History

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